too-many-cells (à la Python)
It's Scanpy friendly!
**A python package for spectral clustering based on the powerful suite of tools named too-many-cells. In essence, you can use toomanycells to partition a data set in the form of a matrix of integers or floating point numbers into clusters. The rows represent observations and the columns are the features. Initially, toomanycells will partition your data set into two subsets, trying to maximize the differences between the two. Subsequently, it will reapply that same criterion to each subset and will continue bifurcating until the modularity of the parent becomes negative, implying that the current subset is fairly homogeneous, and consequently suggesting that further partitioning is not warranted. Thus, when the process finishes, you end up with a tree structure of your data set, where the leaves represent the clusters. As mentioned earlier, you can use this tool with any kind of data. However, a common application is to classify cells and therefore you can provide an AnnData object. You can read about this application in this Nature Methods paper. **
- Free software: BSD 3-Clause License
- Documentation: https://JRR3.github.io/toomanycells
Dependencies
Make sure you have installed the graph visualization library Graphviz.
Installation
Just type
pip install toomanycells
in your home environment.
Usage
- First import the module as follows
from toomanycells import TooManyCells as tmc - If you already have an AnnData object
Aloaded into memory, then you can create a TooManyCells object with
However, if you want the output folder to be a directory that is not the current working directory, then you can specify the path as followstmc_obj = tmc(A)tmc_obj = tmc(A, output_directory) - If instead of providing an AnnData object you want to provide the directory where your data is located, you can use the syntax
tmc_obj = tmc(input_directory, output_directory) - If your input directory has a file in the matrix market format, then you have to specify this information by using the following flag
Under this scenario, thetmc_obj = tmc(input_directory, output_directory, input_is_matrix_market=True)input_directorymust contain a.mtxfile, abarcodes.tsvfile (the observations), and agenes.tsv(the features). - Once your data has been loaded successfully, you can start the clustering process with the following command
In my desktop computer a data set with ~90K cells (observations) and ~30K genes (features) it took a little less than 6 minutes in 1809 iterations. Note that the progress bar only produces an estimate of the total number of iterations.tmc_obj.run_spectral_clustering() - At the end of the clustering process the
.obsdata frame of the AnnData object should have two columns named['sp_cluster', 'sp_path']which contain the cluster labels and the path from the root node to the leaf node, respectively.tmc_obj.A.obs[['sp_cluster', 'sp_path']] - To generate the outputs, just call the function
This call will generate a PDF of the tree and a DOT file for the graph, two CSV files that describe the clusters and the information of each node, and a JSON file that contains the tree structure. If you already have a DOT file and only want to plot the tree and store the information of each node, you can use the following calltmc_obj.store_outputs()tmc_obj.store_outputs(load_dot_file=True) - If you want to visualize your results in a dynamic platform, I strongly recommend the tool too-many-cells-interactive. To use it, first make sure that you have Docker Compose and Docker. One simple way of getting the two is by installing Docker Desktop. If you use Nix, simply add the packages
pkgs.dockerandpkgs.docker-composeto your configuration orhome.nixfile and run
home-manager switch
- If you installed Docker Desktop you probably don't need to follow this step. However, under some distributions the following two commands have proven to be essential.
sudo dockerd
to start the daemon service for docker containers and
sudo chmod 666 /var/run/docker.sock
to let Docker read and write to that location.
- Now clone the repository
git clone https://github.com/schwartzlab-methods/too-many-cells-interactive.git
and store the path to the too-many-cells-interactive folder in a variable, for example path_to_tmc_interactive. Also, you will need to identify a column in your AnnData.obs data frame that has the labels for the cells. Let's assume that the column name is stored in the variable cell_annotations. Lastly, you can provide a port number to host your visualization, for instance port_id=1234. Then, you can call the function
tmc_obj.visualize_with_tmc_interactive(
path_to_tmc_interactive,
cell_annotations,
port_id)
In my case it took a little less than 3 minutes to load the app with ~90K cells (observations).
Release files for toomanycells 1.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| toomanycells-1.0.2.tar.gz | 797.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| toomanycells-1.0.2-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 809.9 kB
Release files / toomanycells-1.0.2.tar.gz
| Download URL | toomanycells-1.0.2.tar.gz |
|---|---|
| Size | 797.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0c3eec8d7fd5c244fc839d833cf40024880a356d020ec58d32334fd12b4cf5be
|
|
BLAKE2b-256 checksum How to use checksums |
141a1c97edf44c58d4ec33814deed5a12a9d0189240f4980f8d64942bbb5e401
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.0.0 CPython/3.12.2
|
Release files / toomanycells-1.0.2-py2.py3-none-any.whl
| Download URL | toomanycells-1.0.2-py2.py3-none-any.whl |
|---|---|
| Size | 12.8 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
9745cb7655f71670e6ac14e121c28e5fd05efeb9ec82f76fcb195a383a04be81
|
|
BLAKE2b-256 checksum How to use checksums |
91dfc8eac22d3ddd3c52cfa1bdfd7caa5794e392711a05f4b9b6cab62e861259
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.0.0 CPython/3.12.2
|