File size: 357 Bytes
e8edb9d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """scPTR: Single-cell post-transcriptional regulation analysis."""
__version__ = "0.1.0"
from . import preprocessing as pp
from . import tools as tl
from . import plotting as pl
from . import readwrite
from . import datasets
from . import benchmark
try:
from . import deep
except ImportError:
pass # torch not installed; deep module unavailable
|