aboutsummaryrefslogtreecommitdiff
path: root/uploader/phenotypes/misc.py
blob: 7003f812d0eeffd2de7748dc60745a5c30c3dac0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
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()