aboutsummaryrefslogtreecommitdiff
path: root/uploader
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-04-14 14:35:22 -0500
committerFrederick Muriuki Muriithi2025-04-14 15:06:03 -0500
commit4768b837c24aa3622d87c3c6adff112cb975ab20 (patch)
treefaf0d128c91f8ed15c4c3db6b694b7bc95a6e8f2 /uploader
parent364265d86c35c0770f6b0a053bb5bdecaf208376 (diff)
downloadgn-uploader-4768b837c24aa3622d87c3c6adff112cb975ab20.tar.gz
Add tests for new difference computation function.
Diffstat (limited to 'uploader')
-rw-r--r--uploader/phenotypes/misc.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/uploader/phenotypes/misc.py b/uploader/phenotypes/misc.py
new file mode 100644
index 0000000..7003f81
--- /dev/null
+++ b/uploader/phenotypes/misc.py
@@ -0,0 +1,11 @@
+"""Miscellaneous functions handling phenotypes and phenotypes data."""
+import logging
+
+logger = logging.getLogger(__name__)
+
+
+def phenotypes_data_differences(
+ filedata: tuple[dict, ...], dbdata: tuple[dict, ...]
+) -> tuple[dict, ...]:
+ """Compute differences between file data and db data"""
+ return tuple()