Spaces:
Sleeping
Sleeping
File size: 612 Bytes
155c1a6 5774c2d 155c1a6 5774c2d 155c1a6 5774c2d 155c1a6 5774c2d 155c1a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | """
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"
]
|