diff options
author | Frederick Muriuki Muriithi | 2021-09-15 11:19:56 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-09-15 11:19:56 +0300 |
commit | e3e18950cfcdec918429dcbb5d5ed2e9616b7a20 (patch) | |
tree | 52fad9c47ae0ef34739024708d1cd7cdb0e29f6d /tests/unit | |
parent | f17b489c8eb94050b81b1a59fb43954d036f7c38 (diff) | |
download | genenetwork3-e3e18950cfcdec918429dcbb5d5ed2e9616b7a20.tar.gz |
Reorganise modules
Issue:
https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/clustering.gmi
* The heatmap generation does not fall cleanly within the computations or db
modules. This commit moves it to the higher level gn3 module.
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/test_heatmaps.py (renamed from tests/unit/computations/test_heatmap.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/computations/test_heatmap.py b/tests/unit/test_heatmaps.py index 156af45..265d5a8 100644 --- a/tests/unit/computations/test_heatmap.py +++ b/tests/unit/test_heatmaps.py @@ -1,6 +1,6 @@ -"""Module contains tests for gn3.computations.heatmap""" +"""Module contains tests for gn3.heatmaps.heatmaps""" from unittest import TestCase -from gn3.computations.heatmap import ( +from gn3.heatmaps import ( cluster_traits, export_trait_data, compute_traits_order, |