Metadata-Version: 2.1
Name: tivelo
Version: 0.0.5
Summary: single cell velocity analysis
Home-page: https://github.com/aqlkzf/tivelo
Author: Muyang GE
Author-email: muyang@mail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bson >=0.5.10
Requires-Dist: numpy >=1.21.0
Requires-Dist: scipy >=1.10.0
Requires-Dist: matplotlib >=3.4.0
Requires-Dist: pandas >=2.0.0
Requires-Dist: networkx >=3.0.0
Requires-Dist: scikit-learn >=1.0.0
Requires-Dist: scanpy >=1.9.0
Requires-Dist: tqdm >=4.0.0
Requires-Dist: torch >=1.9.0
Requires-Dist: scvelo >=0.3.0
Requires-Dist: numba >=0.55.0
Provides-Extra: dev
Requires-Dist: pytest >=7.0 ; extra == 'dev'
Requires-Dist: twine >=4.0.2 ; extra == 'dev'

## TIVelo
a tool to be published on Nature.

## Installation
tivelo requires Python 3.8 or later. We recommend to use Miniconda.

conda create -n tivelo python=3.9
conda activate tivelo

We have published the tivelo package on PyPI. To ensure a smooth and stable installation process, we recommend installing large dependencies separately before installing tivelo in a conda environment.

### pytorch

conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia -y

### numba
conda install numba 
To enable CUDA GPU support for Numba, install the latest graphics drivers from NVIDIA for your platform. (Note that the open source Nouveau drivers shipped by default with many Linux distributions do not support CUDA.) Then install the CUDA Toolkit package.

For CUDA 12, cuda-nvcc and cuda-nvrtc are required:

$ conda install -c conda-forge cuda-nvcc cuda-nvrtc "cuda-version>=12.0" -y
For CUDA 11, cudatoolkit is required:

$ conda install -c conda-forge cudatoolkit "cuda-version>=11.2,<12.0"
You do not need to install the CUDA SDK from NVIDIA.

### scanpy
conda install -c conda-forge scanpy python-igraph leidenalg -y





### scVelo
pip install -U scvelo 
Parts of scVelo (directed PAGA and Louvain modularity) require (optional):
pip install igraph louvain 
Using fast neighbor search via hnswlib further requires (optional):
pip install pybind11 hnswlib 


### tivelo

pip install tivelo



## Jupyterlab 
To run the tutorials in a notebook locally, please install:
conda install jupyterlab -y


