cellphonedb
CellPhoneDB can be used to search for a particular ligand/receptor, or interrogate your own HUMAN single-cell transcriptomics data.
Science Score: 46.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: nature.com -
✓Committers with academic emails
5 of 20 committers (25.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.1%) to scientific vocabulary
Keywords from Contributors
Repository
CellPhoneDB can be used to search for a particular ligand/receptor, or interrogate your own HUMAN single-cell transcriptomics data.
Basic Info
- Host: GitHub
- Owner: ventolab
- License: mit
- Language: Jupyter Notebook
- Default Branch: master
- Homepage: https://www.cellphonedb.org/
- Size: 452 MB
Statistics
- Stars: 424
- Watchers: 9
- Forks: 58
- Open Issues: 57
- Releases: 0
Metadata Files
README.md
CellphoneDB
What is CellphoneDB?
CellphoneDB is a publicly available repository of HUMAN curated receptors, ligands and their interactions paired with a tool to interrogate your own single-cell transcriptomics data (or even bulk transcriptomics data if your samples represent pure populations!).
A distinctive feature of CellphoneDB is that the subunit architecture of either ligands and receptors is taken into account, representing heteromeric complexes accurately. This is crucial, as cell communication relies on multi-subunit protein complexes that go beyond the binary representation used in most databases and studies. CellphoneDB also incorporates biosynthetic pathways in which we use the last representative enzyme as a proxy of ligand abundance, by doing so, we include interactions involving non-peptidic molecules. CellphoneDB includes only manually curated & reviewed molecular interactions with evidenced role in cellular communication.
Documentation
For more details on using CellphoneDB and a more detailed description of the methods, visit the DOCUMENTATION.
Novel features in v5
1) New python package that can be easily executed in Jupyter Notebook and Collabs.
2) A scoring methodology to rank interaction based on the expression specificity of the interacting partners.
3) A CellSign module to leverage interactions based on the activity of the transcription factor downstream the receptor. This module is accompanied by a collection of 211 well described receptor-transcription factor direct relationships.
4) A new method of querying of CellphoneDB results search_utils.search_analysis_results.
5) Tutorials to run CellphoneDB (available here)
6) Improved computational efficiency of method 2 cpdb_statistical_analysis_method.
7) A new database (cellphonedb-data v5.0) with more manually curated interactions, making up to a total of ~3,000 interactions. This release of CellphoneDB database has three main changes:
- Integrates new manually reviewed interactions with evidenced roles in cell-cell communication.
- Includes non-protein molecules acting as ligands.
- For interactions with a demonstrated signalling directionality, partners have been ordered according (ligand is partner A, receptor partner B).
- Interactions have been classified within signaling pathways.
- CellphoneDB no longer imports interactions from external resources. This is to avoid the inclusion of low-confidence interactions.
See updates from previous releases here.
Installing CellphoneDB
We highly recommend using an isolated python environment (as described in steps 1 and 2) using conda or virtualenv but you could of course omit these steps and install via pip immediately.
Create python=>3.8 environment
- Using conda:
conda create -n cpdb python=3.8 - Using virtualenv:
python -m venv cpdb
- Using conda:
Activate environment
- Using conda:
source activate cpdb - Using virtualenv:
source cpdb/bin/activate
- Using conda:
Install CellphoneDB
pip install cellphonedbSet up the kernel for the Jupyter notebooks.
- Install the ipython kernel:
pip install -U ipykernel. - Add the environment as a jupyter kernel:
python -m ipykernel install --user --name 'cpdb'. - Open/Start Jupyter and select the created kernel.
- Install the ipython kernel:
Download the database.
- Follow this tutorial.
NOTE: Works with Python v3.8 or greater. If your default Python interpreter is for v2.x (you can check it with python --version), calls to python/pip should be substituted by python3/pip3.
Running CellphoneDB Methods
Please, activate your environment if you didn't previously
- Using conda: source activate cpdb
- Using virtualenv: source cpdb/bin/activate
We have created a set of tutorials that can be accessed for each To use the example data, please tutorials and data.
Preparing INPUTS
Preparing your counts input file (mandatory)
Counts file can be a text file or a h5ad (recommended), h5 or a path to a folder containing a 10x output with mtx/barcode/features files. NOTE: Your gene/protein ids must be HUMAN. If you are working with another specie such as mouse, we recommend you to convert the gene ids to their corresponding orthologous.
Preparing your DEGs file (optional, if method degs_analysis)
This is a two columns file indicating which gene is specific or up-regulated in a cell type (see example ). The first column should be the cell type/cluster name (matching those in meta.txt) and the second column the associated gene id. The remaining columns are ignored. We provide notebooks for both Seurat and Scanpy users. It is on you to design a DEG analysis that is appropriate to your research question.
Preparing your microenvironments file (optional, if microenvs_file_path)
This is a two columns file indicating which cell type is in which spatial microenvironment (see example ). CellphoneDB will use this information to define possible pairs of interacting cells (i.e. pairs of clusters co-appearing in a microenvironment).
Preparing your active transcription factor file (optional, if active_tfs_file_path)
This is a two columns file indicating which cell type and which TFs are active (see example). CellphoneDB will use this information to highlight relevant/significant interactions whose downstream TF is active. The information defined in this file (which TFs are active per cell) must be provided by the user.
RUN examples
For more detailed examples refer to our tutorials here.
Example with running the DEG-based method
```shell from cellphonedb.src.core.methods import cpdbdegsanalysis_method
cpdbresults = cpdbdegsanalysismethod.call( cpdbfilepath = cellphonedb.zip, metafilepath = testmeta.txt, countsfilepath = testcounts.h5ad, degsfilepath = degsfilepath, countsdata = 'hgncsymbol', activetfsfilepath = activetf.txt, scoreinteractions = True, microenvsfilepath = microenvsfilepath, threshold = 0.1, outputpath = out_path) ```
Example with running the statistical method
```shell from cellphonedb.src.core.methods import cpdbstatisticalanalysis_method
cpdbresults = cpdbstatisticalanalysismethod.call( cpdbfilepath = cellphonedb.zip, metafilepath = testmeta.txt, countsfilepath = testcounts.h5ad, countsdata = 'hgncsymbol', activetfsfilepath = activetf.txt, microenvsfilepath = microenvsfilepath scoreinteractions = True, threshold = 0.1, outputpath = out_path) ```
Example without using the statistical method
- Using text files ```shell from cellphonedb.src.core.methods import cpdbanalysismethod
cpdbresults = cpdbanalysismethod.call( cpdbfilepath = cellphonedb.zip, metafilepath = testmeta.txt, countsfilepath = testcounts.txt, countsdata = 'hgncsymbol', scoreinteractions = True, outputpath = outpath) ```
- Using h5ad count file ```shell from cellphonedb.src.core.methods import cpdbanalysismethod
cpdbresults = cpdbanalysismethod.call( cpdbfilepath = cellphonedb.zip, metafilepath = testmeta.txt, countsfilepath = testcounts.h5ad, countsdata = 'hgncsymbol', outputpath = out_path) ```
Results are saved as files in output_path and as a dictionary of dataframes in the output variable cpdb_results.
To understand the different analysis and results, please check the results documentation.
Optional Parameters
Optional Method parameters:
- counts_data: Type of gene identifiers in the counts data [ensembl | genename | hgncsymbol]
- iterations: Number of iterations for the statistical analysis [1000]
- threshold: % of cells expressing the specific ligand/receptor
- result_precision: Number of decimal digits in results [3]
- output_path: Directory where the results will be saved (the directory must exist) [out]
- output_suffix: Output format of the results files (time stamp will be added to filename if not present) [txt]
- subsampling: Enable subsampling based on geometric sketching
- subsampling_log: Enable subsampling log1p for non log-transformed data inputs !!mandatory!!
- subsampling_num_pc: Subsampling NumPC argument (number of PCs to use) [100]
- subsampling_num_cells: Number of cells to subsample the dataset [1/3 of cells by default]
~ Optional Method Statistical parameters
- microenvs_file_path: Spatial microenvironments input file. Restricts the cluster/celltype interacting pairs to the cluster/celltype sharing a microenviroment (i.e. only test a combination of clusters if these coexist in a microenviroment). This file should contain two columns: 1st column indicates the cluster/celltype, 2nd column indicates the microenviroment name. See example here.
- pvalue: P-value threshold [0.05]
- `debugseed: Debug random seed -1. To disable it please use a value >=0 [-1]
-threads`: Number of threads to use. >=1 [4]
Query results
CellphoneDB results can be queried by making use of the search_analysis_results method. This method requires two of the files generated by CellphoneDB significant_means and deconvoluted, optionally interaction_scores can be used to subset interactions by score.
Through this method, users can specify the cell pairs of interest and both; the genes query_genes participating in the interaction and/or the name of the interaction itself query_interactions. This method will search for significant/relevant interactions in which any cell specified in query_cell_types_1 is found to any cell specified in query_cell_types_2. Cell pairs within any of these two lists will not be queried, that is to say, no interaction between cells A and B or C and D will be queried.
```shell from cellphonedb.utils import search_utils
searchresults = searchutils.searchanalysisresults(
querycelltypes1 = ['cellA', 'cell B'],
querycelltypes2 = ['cellC', 'cell D'],
querygenes = ['Gene1', 'Gene2', 'Gene3'],
queryinteractions = ['interactionname1', 'interactionname2'],
significantmeans = cpdbresults['significantmeans'],
deconvoluted = cpdbresults['cpdbdeconvoluted'],
interactionscores = cpdbresults['interactionscores'],
queryminimumscore = 50,
queryclassifications = ['pathwayA', 'pathwayB'],
separator = '|',
long_format = True
)
```
Examples provided in tutorials.
Plotting results
Currently, CellphoneDB relies on external plotting implementations to represent the results. Examples of the use are provided in the tutorials.
We recommend using tools such as: seaborn, ggplot, or a more specific and tailored implementation such as the @ktplots: - ktplots (R) - ktplotspy (python)
Using different database versions
CellphoneDB databases can be updated from the remote repository through our tool. Furthermore, available versions can be listed and downloaded for use. Please, refer to our tutorials for a comprehensive example.
First, the user must download the database to its preferred directory, once this is done, the user must provide the argument cpdb_file_path to the CellphoneDB method to be executed with the provided version of the database.
The database is downloaded in a zip format along with the input files employed to generate it. These input files can be modified to update the database with new interactions.
CellphoneDB v5 is compatible with database version 4.1.0 or newer.
Listing remote available versions
The command to list available versions from the remote repository is: ```shell from IPython.display import HTML, display from cellphonedb.utils import dbreleasesutils
display(HTML(dbreleasesutils.getremotedatabaseversionshtml()['dbreleaseshtml_table'])) ``` See examples.
Download version
The command to download a version from the remote repository is: ```shell from cellphonedb.utils import db_utils
dbutils.downloaddatabase(cpdbtargetdir, cpdb_version) ``` See examples.
Generating user-specific custom database
A user can generate custom databases and use them. In order to generate a new database, a user can provide his/her own lists.
We recommend first to download CellphoneDB database, move these downloaded files into a new folder and then modify its content to add new interactions. Once this process is completed, the created_db method will create a new database in zip format in the same folder where the inputs are located. Examples of how to download and create the database can be found here example.
To generate such a database the user has to issue this command: ```shell from cellphonedb.utils import db_utils
dbutils.createdb(cpdbinputdir) ```
Result database file is generated in the folder out with cellphonedb_{datetime}.zip.
Do not change the name of the input files, otherwise CellphoneDB will not recognize them and and error will be thrown.
Contributing to CellphoneDB
CellphoneDB is an open-source project. If you are interested in contributing to this project, please let us know. You can check all project documentation in the docs section
Citing CellphoneDB
The first version of CellphoneDB was originally developed at the Teichmann Lab in the Wellcome Sanger Institute (Cambridge, UK) by Roser Vento-Tormo and Mirjana Efremova. Currently, it is being further developed and supported by the Vento-Tormo Lab (CellphoneDB v3).
If you use CellphoneDB or CellphoneDB-data, please cite our papers:
CellphoneDB v1 (original): Single-cell reconstruction of the early maternal-fetal interface in humans. Vento-Tormo R, Efremova M, et al., Nature. 2018 link
CellphoneDB v2: Inferring cell-cell communication from combined expression of multi-subunit receptor-ligand complexes. Efremova M, Vento-Tormo M, Teichmann S, Vento-Tormo R. Nat Protoc. 2020 link
CellphoneDB v3: Mapping the temporal and spatial dynamics of the human endometrium in vivo and in vitro. L Garcia-Alonso, L-Franois Handfield, K Roberts, K Nikolakopoulou et al. Nature Genetics 2021 link
CellphoneDB v4: Single-cell roadmap of human gonadal development. L Garcia-Alonso, V Lorenzi et al. 2022 Nature link
CellphoneDB v5 (latest): CellphoneDB v5: inferring cell-cell communication from single-cell multiomics data. Troule et al. Nat Protocols 2025 link
Owner
- Name: Ventolab
- Login: ventolab
- Kind: organization
- Email: rv4@sanger.ac.uk
- Location: Wellcome Sanger Institute
- Website: https://ventolab.org/
- Repositories: 5
- Profile: https://github.com/ventolab
We aim to understand the influence of cellular micro-environments on defining unique cellular identities and responses.
GitHub Events
Total
- Issues event: 13
- Watch event: 87
- Member event: 1
- Issue comment event: 15
- Push event: 4
- Pull request event: 1
- Fork event: 9
Last Year
- Issues event: 13
- Watch event: 87
- Member event: 1
- Issue comment event: 15
- Push event: 4
- Pull request event: 1
- Fork event: 9
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Mvento | m****l@e****m | 584 |
| chapuzzo | l****x@g****m | 226 |
| Robert Petryszak | i****o@d****k | 181 |
| Mvento | m****l@y****m | 132 |
| luzgaral | l****o@g****m | 121 |
| prete | m****e@s****k | 38 |
| nh3 | n****3 | 14 |
| mief | m****a@g****m | 13 |
| evanbiederstedt | e****t@g****m | 9 |
| Nico | n****1@g****m | 8 |
| boombard | e****2@g****m | 5 |
| Darío Hereñú | m****a@g****m | 3 |
| Mirjana Efremova | m****5@s****k | 3 |
| roservento-tormo | r****r@v****m | 2 |
| ktroule | 9****e | 2 |
| Miquel | e****o@g****m | 1 |
| Kelvin | 2****g | 1 |
| Robert Petryszak | r****3@s****k | 1 |
| Mirjana Efremova | m****5@m****k | 1 |
| Kelvin | k****6@s****k | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 7 months ago
All Time
- Total issues: 8
- Total pull requests: 1
- Average time to close issues: 14 days
- Average time to close pull requests: N/A
- Total issue authors: 8
- Total pull request authors: 1
- Average comments per issue: 0.25
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 8
- Pull requests: 1
- Average time to close issues: 14 days
- Average time to close pull requests: N/A
- Issue authors: 8
- Pull request authors: 1
- Average comments per issue: 0.25
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- Pedramto89 (3)
- Jessica1525809 (3)
- Inbarpl (2)
- bitcometz (2)
- Starlitnightly (1)
- lidd77 (1)
- RunyuXia (1)
- ncedi12 (1)
- fafa92 (1)
- Zijiang8 (1)
- alohaia (1)
- Dolphin-dfy (1)
- deevdevil88 (1)
- michaelmather15 (1)
- npamb (1)
Pull Request Authors
- zktuong (1)
- ngvananh2508 (1)
- VittoriaDBocchi (1)
- harshagr21 (1)
- Pedramto89 (1)
- partrita (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 3
-
Total downloads:
- pypi 1,672 last-month
-
Total dependent packages: 1
(may contain duplicates) -
Total dependent repositories: 2
(may contain duplicates) - Total versions: 87
- Total maintainers: 5
proxy.golang.org: github.com/ventolab/cellphonedb
- Documentation: https://pkg.go.dev/github.com/ventolab/cellphonedb#section-documentation
- License: mit
-
Latest release: v5.0.1+incompatible
published almost 2 years ago
Rankings
proxy.golang.org: github.com/ventolab/CellphoneDB
- Documentation: https://pkg.go.dev/github.com/ventolab/CellphoneDB#section-documentation
- License: mit
-
Latest release: v5.0.1+incompatible
published almost 2 years ago
Rankings
pypi.org: cellphonedb
Inferring cell-cell communication.
- Homepage: https://github.com/ventolab/cellphonedb
- Documentation: https://github.com/ventolab/cellphonedb
- License: MIT
-
Latest release: 5.0.1
published almost 2 years ago