Tumo505's picture
Deploy HeartMAP v1.1.2 with latest improvements
5774c2d unverified
raw
history blame contribute delete
612 Bytes
"""
HeartMAP: Heart Multi-chamber Analysis Platform
A comprehensive framework for analyzing cell-cell communication across all four chambers
of the human heart using single-cell RNA sequencing data.
"""
__version__ = "1.1.2"
__author__ = "Tumo Kgabeng, Lulu Wang, Harry Ngwangwa, Thanyani Pandelani"
__email__ = "28346416@mylife.unisa.ac.za"
# from .models import HeartMapModel
from .pipelines import BasicPipeline, AdvancedCommunicationPipeline, MultiChamberPipeline
from .config import Config
__all__ = [
"BasicPipeline",
"AdvancedCommunicationPipeline",
"MultiChamberPipeline",
"Config"
]