mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-21 19:38:12 +08:00
* Add user-defined category-label colors Fixes https://github.com/chanzuckerberg/cellxgene/issues/1152 As described in https://github.com/chanzuckerberg/cellxgene/issues/1307 * Respond to feedback from @bkmartinjr in nodejs * Respond to feedback from @bkmartinjr in python * Add tests to the server module * Autoformat python, run linter * Make colors_get error handling specific * Respond to feedback from @bkmartinjr * Respond to feedback from @bkmartinjr * Fix whitespace * Fix python lint errrors * Update documentation * Add --disable-user-colors option to launch and cxgtool.py * Fix python formatting * Rename '--disable-user-colors' to '--disable-custom-colors'
64 lines
2.8 KiB
Python
64 lines
2.8 KiB
Python
import pytest
|
|
import unittest
|
|
import warnings
|
|
import math
|
|
|
|
import server.test.decode_fbs as decode_fbs
|
|
|
|
from server.data_anndata.anndata_adaptor import AnndataAdaptor
|
|
from server.common.errors import FilterError
|
|
from server.common.data_locator import DataLocator
|
|
from server.test import PROJECT_ROOT, app_config
|
|
|
|
|
|
class NaNTest(unittest.TestCase):
|
|
def setUp(self):
|
|
self.data_locator = DataLocator(f"{PROJECT_ROOT}/server/test/test_datasets/nan.h5ad")
|
|
self.config = app_config(self.data_locator.path)
|
|
|
|
with warnings.catch_warnings():
|
|
warnings.simplefilter("ignore", category=UserWarning)
|
|
self.data = AnndataAdaptor(self.data_locator, self.config)
|
|
self.data._create_schema()
|
|
|
|
def test_load(self):
|
|
with self.assertWarns(UserWarning):
|
|
self.data = AnndataAdaptor(self.data_locator, self.config)
|
|
|
|
def test_init(self):
|
|
self.assertEqual(self.data.cell_count, 100)
|
|
self.assertEqual(self.data.gene_count, 100)
|
|
epsilon = 0.000_005
|
|
self.assertTrue(self.data.data.X[0, 0] - -0.171_469_51 < epsilon)
|
|
|
|
def test_dataframe(self):
|
|
data_frame_var = decode_fbs.decode_matrix_FBS(self.data.data_frame_to_fbs_matrix(None, "var"))
|
|
self.assertIsNotNone(data_frame_var)
|
|
self.assertEqual(data_frame_var["n_rows"], 100)
|
|
self.assertEqual(data_frame_var["n_cols"], 100)
|
|
self.assertTrue(math.isnan(data_frame_var["columns"][3][3]))
|
|
|
|
with pytest.raises(FilterError):
|
|
self.data.data_frame_to_fbs_matrix("an erroneous filter", "var")
|
|
with pytest.raises(FilterError):
|
|
filter_ = {"filter": {"obs": {"index": [1, 99, [200, 300]]}}}
|
|
self.data.data_frame_to_fbs_matrix(filter_["filter"], "var")
|
|
|
|
def test_dataframe_obs_not_implemented(self):
|
|
with self.assertRaises(ValueError) as cm:
|
|
decode_fbs.decode_matrix_FBS(self.data.data_frame_to_fbs_matrix(None, "obs"))
|
|
self.assertIsNotNone(cm.exception)
|
|
|
|
def test_annotation(self):
|
|
annotations = decode_fbs.decode_matrix_FBS(self.data.annotation_to_fbs_matrix("obs"))
|
|
obs_index_col_name = self.data.schema["annotations"]["obs"]["index"]
|
|
self.assertEqual(annotations["col_idx"], [obs_index_col_name, "n_genes", "percent_mito", "n_counts", "louvain"])
|
|
self.assertEqual(annotations["n_rows"], 100)
|
|
self.assertTrue(math.isnan(annotations["columns"][2][0]))
|
|
|
|
annotations = decode_fbs.decode_matrix_FBS(self.data.annotation_to_fbs_matrix("var"))
|
|
var_index_col_name = self.data.schema["annotations"]["var"]["index"]
|
|
self.assertEqual(annotations["col_idx"], [var_index_col_name, "n_cells", "var_with_nans"])
|
|
self.assertEqual(annotations["n_rows"], 100)
|
|
self.assertTrue(math.isnan(annotations["columns"][2][0]))
|