| """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 | |