https://hal.archives-ouvertes.fr/hal-03370296
Raw File
Tip revision: 29a70ab8d8eadf78863a8b8bd55941b6f840158f authored by Software Heritage on 07 October 2021, 00:00:00 UTC
hal: Deposit 1807 in collection hal
Tip revision: 29a70ab
__init__.py
"""
Harissa
=======

Gene regulatory network inference from single-cell data
-------------------------------------------------------

Mechanistic model-based gene network inference using
a self-consistent proteomic field (SCPF) approximation.
It is analogous to the unrestricted Hartree approximation
in quantum mechanics, applied to gene expression modeled
as a piecewise-deterministic Markov process (PDMP).

The package also includes a simulation module to generate
single-cell data with transcriptional bursting.

Author: Ulysse Herbach (ulysse.herbach@inria.fr)
"""
__version__ = '3.0'

from .model import NetworkModel, Cascade, Tree

__all__ = ['NetworkModel', 'Cascade', 'Tree']
back to top