Installation

Installation#

For installation of this package you need to have Python 3.10 or newer installed. You can install anndata-fcs with pip:

pip install anndata-fcs

Development#

Install development version of anndata-fcs with:

git clone git+https://github.com/harryhaller001/citeseq_to_fcs.git

To setup development environment create python virtual environment:

python3 -m virtualenv venv
source venv/bin/activate

Use make to setup dependencies:

make install

# activate pre-commit
pre-commit install

Run checks with make:

# Run all checks
make check

# Run formatting
make format

# Run unit testing with pytest
make testing

# Run type checks with mypy
make typing

Dependencies#

Required dependencies:

Optional dependencies:

  • For density plots, scipy is required.