From 6b69de70deff6562ab1a4f46d04ec34e48019ff8 Mon Sep 17 00:00:00 2001 From: Dominik Date: Fri, 31 May 2024 02:08:34 -0700 Subject: [PATCH] reference bioconda package in readme --- README.md | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8f06bac5..028c5949 100755 --- a/README.md +++ b/README.md @@ -6,11 +6,33 @@ Palantir Palantir is an algorithm to align cells along differentiation trajectories. Palantir models differentiation as a stochastic process where stem cells differentiate to terminally differentiated cells by a series of steps through a low dimensional phenotypic manifold. Palantir effectively captures the continuity in cell states and the stochasticity in cell fate determination. Palantir has been designed to work with multidimensional single cell data from diverse technologies such as Mass cytometry and single cell RNA-seq. - -## Installation and dependencies +## Installation Palantir has been implemented in Python3 and can be installed using: - pip install palantir +### Using pip +```sh +pip install palantir +``` + +### Using conda, mamba, or micromamba from the bioconda channel +You can also install Palantir via conda, mamba, or micromamba from the bioconda channel: + +#### Using conda +```sh +conda install -c bioconda palantir +``` + +#### Using mamba +```sh +mamba install -c bioconda palantir +``` + +#### Using micromamba +```sh +micromamba install -c bioconda palantir +``` + +These methods ensure that all dependencies are resolved and installed efficiently. ## Usage