You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The complete FlowSOM package known from R, now available in Python!
23
+
The complete FlowSOM package known from R and [Bioconductor](https://www.bioconductor.org/packages/release/bioc/html/FlowSOM.html), now available in Python with [scverse](https://scverse.org/) integration!
24
+
25
+
FlowSOM is a clustering and visualization algorithm originally based on a self-organizing map (SOM). FlowSOM is used to distinguish cell populations from cytometry data in an unsupervised way and
26
+
can help to gain deeper insights in fields such as immunology and oncology.
11
27
12
28
## Getting started
13
29
@@ -19,25 +35,26 @@ Please refer to the [documentation][link-docs]. In particular, the following res
19
35
20
36
## Installation
21
37
22
-
You need to have Python 3.9 or newer installed on your system. If you don't have
23
-
Python installed, we recommend installing [Mambaforge](https://github.com/conda-forge/miniforge#mambaforge).
24
-
25
-
There are several alternative options to install FlowSOM:
38
+
You need to have Python 3.9 or newer installed on your system. There are several options to install FlowSOM:
26
39
27
-
<!--
28
-
1) Install the latest release of `FlowSOM` from `PyPI <https://pypi.org/project/FlowSOM/>`_:
40
+
**Recommended installation**: install the latest release of FlowSOM from [PyPI](https://pypi.org/project/FlowSOM/):
29
41
30
42
```bash
31
-
pip install FlowSOM
43
+
pip install flowsom
32
44
```
33
-
-->
34
45
35
-
1. Install the latest development version:
46
+
Alternative 1: install the development version from the GitHub repository:
Alternative 2: install the [FlowSOM Conda package](https://anaconda.org/conda-forge/flowsom) via the Conda package manager:
53
+
54
+
```bash
55
+
conda install -c conda-forge flowsom
56
+
```
57
+
41
58
## Usage
42
59
43
60
Starting from an FCS file that is properly transformed, compensated and checked for quality, the following code can be used to run the FlowSOM algorithm:
0 commit comments