-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathtest_normalize.py
563 lines (491 loc) · 16.9 KB
/
test_normalize.py
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
import os
import random
import tempfile
import numpy as np
import pandas as pd
import pytest
from pycytominer.normalize import normalize
random.seed(123)
# Get temporary directory
tmpdir = tempfile.gettempdir()
# Setup testing files
output_test_file_csv = os.path.join(tmpdir, "test.csv")
output_test_file_parquet = os.path.join(tmpdir, "test.parquet")
# Build data to use in tests
data_df = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [1, 2, 8, 2, 5, 5, 5, 1],
"y": [3, 1, 7, 4, 5, 9, 6, 1],
"z": [1, 8, 2, 5, 6, 22, 2, 2],
"zz": [14, 46, 1, 6, 30, 100, 2, 2],
}).reset_index(drop=True)
data_file = os.path.join(tmpdir, "test_normalize.csv")
data_df.to_csv(data_file, index=False, sep=",")
data_feature_infer_df = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"Cells_x": [1, 2, 8, 2, 5, 5, 5, 1],
"Cells_y": [3, 1, 7, 4, 5, 9, 6, 1],
"Cytoplasm_z": [1, 8, 2, 5, 6, 22, 2, 2],
"Nuclei_zz": [14, 46, 1, 6, 30, 100, 2, 2],
}).reset_index(drop=True)
data_feature_infer_file = os.path.join(tmpdir, "test_normalize_infer.csv")
data_feature_infer_df.to_csv(data_feature_infer_file, index=False, sep=",")
a_feature = random.sample(range(1, 100), 10)
b_feature = random.sample(range(1, 100), 10)
c_feature = random.sample(range(1, 100), 10)
d_feature = random.sample(range(1, 100), 10)
id_feature = ["control"] * 5 + ["treatment"] * 5
data_spherize_df = pd.DataFrame({
"a": a_feature,
"b": b_feature,
"c": c_feature,
"d": d_feature,
"id": id_feature,
}).reset_index(drop=True)
data_no_var_df = pd.concat(
[data_df, pd.DataFrame([1] * data_df.shape[0], columns=["yy"])], axis="columns"
)
def test_normalize_standardize_allsamples():
"""
Testing normalize pycytominer function
method = "standardize"
meta_features = None
samples="all"
"""
normalize_result = normalize(
profiles=data_df.copy(),
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="standardize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-1.1, -0.7, 1.9, -0.7, 0.6, 0.6, 0.6, -1.1],
"y": [-0.6, -1.3, 0.9, -0.2, 0.2, 1.7, 0.6, -1.3],
"z": [-0.8, 0.3, -0.6, -0.2, 0.0, 2.5, -0.6, -0.6],
"zz": [-0.3, 0.7, -0.8, -0.6, 0.2, 2.3, -0.7, -0.7],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_standardize_ctrlsamples():
"""
Testing normalize pycytominer function
method = "standardize"
meta_features = None
samples="Metadata_treatment == 'control'"
"""
normalize_result = normalize(
profiles=data_df.copy(),
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="Metadata_treatment == 'control'",
method="standardize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-1.1, -0.7, 1.5, -0.7, 0.4, 0.4, 0.4, -1.1],
"y": [-0.7, -1.5, 1.1, -0.2, 0.2, 2.0, 0.7, -1.5],
"z": [-1.3, 4.0, -0.6, 1.7, 2.5, 14.8, -0.6, -0.6],
"zz": [5.9, 22.5, -0.9, 1.7, 14.2, 50.6, -0.4, -0.4],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_robustize_allsamples():
"""
Testing normalize pycytominer function
method = "robustize"
meta_features = None
samples="all"
"""
normalize_result = normalize(
profiles=data_df.copy(),
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="robustize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-0.8, -0.5, 1.4, -0.5, 0.5, 0.5, 0.5, -0.8],
"y": [-0.4, -0.9, 0.7, -0.1, 0.1, 1.2, 0.4, -0.9],
"z": [-0.6, 1.0, -0.3, 0.3, 0.6, 4.1, -0.3, -0.3],
"zz": [0.1, 1.1, -0.3, -0.1, 0.6, 2.8, -0.2, -0.2],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_robustize_ctrlsamples():
"""
Testing normalize pycytominer function
method = "robustize"
meta_features = None
samples="Metadata_treatment == 'control'"
"""
normalize_result = normalize(
profiles=data_df.copy(),
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="Metadata_treatment == 'control'",
method="robustize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-0.6, -0.4, 1.1, -0.4, 0.4, 0.4, 0.4, -0.6],
"y": [-0.7, -1.3, 0.7, -0.3, 0.0, 1.3, 0.3, -1.3],
"z": [-1.3, 8.0, 0.0, 4.0, 5.3, 26.7, 0.0, 0.0],
"zz": [9.6, 35.2, -0.8, 3.2, 22.4, 78.4, 0.0, 0.0],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_robustize_mad_allsamples():
"""
Testing normalize pycytominer function
method = "mad_robustize"
meta_features = None
samples="all"
"""
normalize_result = normalize(
profiles=data_df.copy(),
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="mad_robustize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-1.1, -0.7, 2, -0.7, 0.7, 0.7, 0.7, -1.1],
"y": [-0.5, -1.2, 0.8, -0.2, 0.2, 1.5, 0.5, -1.2],
"z": [-0.8, 1.5, -0.5, 0.5, 0.8, 6.2, -0.5, -0.5],
"zz": [0.3, 2.9, -0.7, -0.3, 1.6, 7.1, -0.6, -0.6],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_robustize_mad_allsamples_novar():
"""
Testing normalize pycytominer function
method = "mad_robustize"
meta_features = None
samples="all"
"""
features = ["x", "y", "z", "zz", "yy"]
normalize_result = normalize(
profiles=data_no_var_df.copy(),
features=features,
meta_features="infer",
samples="all",
method="mad_robustize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-1.1, -0.7, 2, -0.7, 0.7, 0.7, 0.7, -1.1],
"y": [-0.5, -1.2, 0.8, -0.2, 0.2, 1.5, 0.5, -1.2],
"z": [-0.8, 1.5, -0.5, 0.5, 0.8, 6.2, -0.5, -0.5],
"zz": [0.3, 2.9, -0.7, -0.3, 1.6, 7.1, -0.6, -0.6],
"yy": [0.0] * normalize_result.shape[0],
}).reset_index(drop=True)
# Check that infinite or nan values are not introduced
assert np.isfinite(normalize_result.loc[:, features].values).all()
assert normalize_result.isna().sum().sum() == 0
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_standardize_allsamples_fromfile():
"""
Testing normalize pycytominer function
data_file provided
method = "standardize"
meta_features = None
samples="all"
"""
normalize_result = normalize(
profiles=data_file,
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="standardize",
).round(1)
infer_normalize_result = normalize(
profiles=data_feature_infer_file,
features="infer",
meta_features=["Metadata_plate", "Metadata_treatment"],
samples="all",
method="standardize",
).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"Cells_x": [-1.1, -0.7, 1.9, -0.7, 0.6, 0.6, 0.6, -1.1],
"Cells_y": [-0.6, -1.3, 0.9, -0.2, 0.2, 1.7, 0.6, -1.3],
"Cytoplasm_z": [-0.8, 0.3, -0.6, -0.2, 0.0, 2.5, -0.6, -0.6],
"Nuclei_zz": [-0.3, 0.7, -0.8, -0.6, 0.2, 2.3, -0.7, -0.7],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(infer_normalize_result, expected_result)
infer_normalize_result.columns = normalize_result.columns
pd.testing.assert_frame_equal(normalize_result, infer_normalize_result)
def test_normalize_standardize_allsamples_output():
"""
Testing normalize pycytominer function
data_file provided
method = "standardize"
meta_features = None
samples="all"
"""
out_normalize_file = os.path.join(tmpdir, "test_normalize_output.csv")
_ = normalize(
profiles=data_file,
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="standardize",
output_file=out_normalize_file,
)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-1.1, -0.7, 1.9, -0.7, 0.6, 0.6, 0.6, -1.1],
"y": [-0.6, -1.3, 0.9, -0.2, 0.2, 1.7, 0.6, -1.3],
"z": [-0.8, 0.3, -0.6, -0.2, 0.0, 2.5, -0.6, -0.6],
"zz": [-0.3, 0.7, -0.8, -0.6, 0.2, 2.3, -0.7, -0.7],
}).reset_index(drop=True)
from_file_result = pd.read_csv(out_normalize_file).round(1)
pd.testing.assert_frame_equal(from_file_result, expected_result)
def test_normalize_standardize_allsamples_compress():
compress_file = os.path.join(tmpdir, "test_normalize_compress.csv.gz")
_ = normalize(
profiles=data_df.copy(),
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="standardize",
output_file=compress_file,
compression_options={"method": "gzip"},
)
normalize_result = pd.read_csv(compress_file).round(1)
expected_result = pd.DataFrame({
"Metadata_plate": ["a", "a", "a", "a", "b", "b", "b", "b"],
"Metadata_treatment": [
"drug",
"drug",
"control",
"control",
"drug",
"drug",
"control",
"control",
],
"x": [-1.1, -0.7, 1.9, -0.7, 0.6, 0.6, 0.6, -1.1],
"y": [-0.6, -1.3, 0.9, -0.2, 0.2, 1.7, 0.6, -1.3],
"z": [-0.8, 0.3, -0.6, -0.2, 0.0, 2.5, -0.6, -0.6],
"zz": [-0.3, 0.7, -0.8, -0.6, 0.2, 2.3, -0.7, -0.7],
}).reset_index(drop=True)
pd.testing.assert_frame_equal(normalize_result, expected_result)
def test_normalize_spherize():
for spherize_method in ["ZCA", "PCA", "ZCA-cor", "PCA-cor"]:
for spherize_center in [True, False]:
if spherize_method in ["PCA-cor", "ZCA-cor"] and not spherize_center:
# verify that calling normalize will throw a ValueError
with pytest.raises(ValueError):
normalize(
data_spherize_df,
features=["a", "b", "c", "d"],
meta_features=["id"],
method="spherize",
spherize_method=spherize_method,
spherize_center=spherize_center,
)
else:
result = normalize(
data_spherize_df,
features=["a", "b", "c", "d"],
meta_features=["id"],
method="spherize",
spherize_method=spherize_method,
spherize_center=spherize_center,
)
result_cov = (
pd.DataFrame(
np.cov(np.transpose(result.drop("id", axis="columns")))
)
.round()
.sum()
.clip(1)
.sum()
)
expected_result = data_spherize_df.shape[1] - 1
assert result_cov == expected_result
result = normalize(
data_spherize_df,
samples="id == 'control'",
features=["a", "b", "c", "d"],
meta_features=["id"],
method="spherize",
spherize_method=spherize_method,
spherize_center=spherize_center,
)
result_cov = (
np.cov(
np.transpose(
result.query("id == 'control'").drop("id", axis="columns")
)
)
.round()
.sum()
.clip(1)
.sum()
)
# Add some tolerance to result b/c of low sample size
expected_result = data_spherize_df.shape[1]
assert result_cov < expected_result
non_spherize_result_cov = (
np.cov(
np.transpose(
result.query("id == 'treatment'").drop("id", axis="columns")
)
)
.round()
.sum()
.sum()
)
assert non_spherize_result_cov >= expected_result - 5
def test_spherize_epsilon():
"""
Test that epsilon is successfully passed to the spherize transform method
"""
sphere_norm_df = normalize(
data_spherize_df, features=["a", "b", "c", "d"], meta_features=["id"]
)
spherize_method = "ZCA"
spherize_center = True
for custom_eps in [1e-6, 1]:
result = normalize(
sphere_norm_df,
features=["a", "b", "c", "d"],
meta_features=["id"],
method="spherize",
spherize_method=spherize_method,
spherize_center=spherize_center,
spherize_epsilon=custom_eps,
)
cov_mat = pd.DataFrame(np.cov(np.transpose(result.drop("id", axis="columns"))))
off_diag_sum = np.round(np.sum(cov_mat).sum() - np.trace(cov_mat), 3)
if custom_eps >= 1:
assert off_diag_sum > 0
else:
assert off_diag_sum == 0
def test_output_type():
"""
Testing normalize pycytominer function with output
"""
# dictionary with the output name associated with the file type
output_dict = {"csv": output_test_file_csv, "parquet": output_test_file_parquet}
# test both output types available with output function
for _type, outname in output_dict.items():
# Test output
normalize(
profiles=data_file,
features=["x", "y", "z", "zz"],
meta_features="infer",
samples="all",
method="standardize",
output_file=outname,
output_type=_type,
)
# read files in with pandas
csv_df = pd.read_csv(output_test_file_csv)
parquet_df = pd.read_parquet(output_test_file_parquet)
# check to make sure the files were read in corrrectly as a pd.Dataframe
assert isinstance(csv_df, pd.DataFrame)
assert isinstance(parquet_df, pd.DataFrame)
# check to make sure both dataframes are the same regardless of the output_type
pd.testing.assert_frame_equal(csv_df, parquet_df)