CellphoneDB


NameCellphoneDB JSON
Version 4.0.0 PyPI version JSON
download
home_pagehttps://cellphonedb.org
SummaryInferring cell-cell communication
upload_time2023-03-10 18:05:27
maintainerVentoLab
docs_urlNone
authorTeichLab/VentoLab
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Database](https://img.shields.io/github/v/release/ventolab/cellphonedb-data.svg?color=blue&label=database)](https://github.com/ventolab/CellphoneDB-data) [![Python package](https://img.shields.io/pypi/v/cellphonedb.svg?color=brightgreen&label=python-package)](https://pypi.org/project/cellphonedb)
# CellPhoneDB 

## What is CellPhoneDB?

CellPhoneDB is a publicly available repository of curated receptors, ligands and their interactions in **HUMAN**. CellPhoneDB can be used to search for a particular ligand/receptor, or interrogate your own single-cell transcriptomics data (or even bulk transcriptomics data if your samples represent pure populations!). 

Subunit architecture is included for both ligands and receptors, 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 CellPhoneDB includes only manually curated & reviewd molecular interactions with evidenced role in cellular communication.

For more details on the analysis check the [DOCUMENTATION](https://cellphonedb.readthedocs.io/en/latest/#). 

Please cite our protocols paper [Efremova et al 2020](https://www.nature.com/articles/s41596-020-0292-x) or [Garcia-Alonso et al](https://www.nature.com/articles/s41588-021-00972-2) (for CellphoneDB >= v3.0).


## New in CellPhoneDB-data v4.1.0

This release of CellphoneDB database integrates new manually reviewed interactions with evidenced roles in cell-cell communication together with existing datasets that pertain to cellular communication (such as Shilts *et al.* 2022 and Kanemura *et al.* 2023). Recently, the database expanded to include non-protein molecules acting as ligands.

1. CellPhoneDB has been implemented as a python package, improving its efficiency and adding new methods, such as the CellPhoneDB results query function.
2. Manually curated more protein-protein interactions involved in cell-cell communication, with a special focus on proteins acting as heteromeric complexes [cellphonedb-data v4.1.0](https://github.com/ventolab/cellphonedb-data). The new database includes more than [2,900 high-confidence interactions](https://www.cellphonedb.org/database.html), including heteromeric complexes. In this version we haved added new G-protein-coupled receptors interactions from Kanemura *et al.* 2023 and  Shilts *et al.* 2022.
3. Interactions retrieved from external resources have been removed from this release to include high-confidence interactions only.
4. [Tutorials](notebooks) for the new CellPhoneDB implementation.

See updates from [previous releases here](https://github.com/ventolab/CellphoneDB/blob/master/docs/RESULTS-DOCUMENTATION.md#release-notes).


## Installing CellPhoneDB 
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`.

We highly recommend using an isolated python environment (as described in steps 1 and 2) using [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) or [virtualenv](https://docs.python.org/3/library/venv.html) but you could of course omit these steps and install via `pip` immediately.

1. Create python=>3.8 environment
- Using conda: `conda create -n cpdb python=3.8`
- Using virtualenv: `python -m venv cpdb`

2. Activate environment
- Using conda: `source activate cpdb`
- Using virtualenv: `source cpdb/bin/activate`

3. Install CellPhoneDB `pip install cellphonedb`


## 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](notebooks).

### Prepatring 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 indicanting which gene is specific or upregulated in a cell type (see [example](in/endometrium_atlas_example/endometrium_example_DEGs.tsv) ). 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](notebooks) for both Seurat and Scanpy users. It is on you to design a DEG analysis appropiated for your research question. 

#### Preparing your microenviroments file (optional, if `microenvs_file_path`)
This is a two columns file indicating which cell type is in which spatial microenvironment (see [example](in/endometrium_atlas_example/endometrium_example_microenviroments.tsv) ). CellphoneDB will use this information to define possible pairs of interacting cells (i.e. pairs of clusters co-appearing in a microenvironment). 

### RUN examples

For more detailed examples refer to out tutorials [here](notebooks).
####  Example with running the DEG-based method
```shell
from cellphonedb.src.core.methods import cpdb_degs_analysis_method

deconvoluted, means, relevant_interactions, significant_means = cpdb_degs_analysis_method.call(
        cpdb_file_path = cellphonedb.zip,
        meta_file_path = test_meta.txt,
        counts_file_path = test_counts.h5ad,
        degs_file_path = degs_file_path,
        counts_data = 'hgnc_symbol',
        threshold = 0.1,
        output_path = out_path)
```

####  Example with running the statistical method
```shell
from cellphonedb.src.core.methods import cpdb_statistical_analysis_method

deconvoluted, means, pvalues, significant_means = cpdb_statistical_analysis_method.call(
        cpdb_file_path = cellphonedb.zip,
        meta_file_path = test_meta.txt,
        counts_file_path = test_counts.h5ad,
        counts_data = 'hgnc_symbol',
        output_path = out_path)
```

#### Example without using the statistical method
 - **Using text files**
```shell
from cellphonedb.src.core.methods import cpdb_analysis_method

means, deconvoluted = cpdb_analysis_method.call(
        cpdb_file_path = cellphonedb.zip,
        meta_file_path = test_meta.txt,
        counts_file_path = test_counts.txt,
        counts_data = 'hgnc_symbol',
        output_path = out_path)
```

 - **Using h5ad count file**
```shell
from cellphonedb.src.core.methods import cpdb_analysis_method

means, deconvoluted = cpdb_analysis_method.call(
        cpdb_file_path = cellphonedb.zip,
        meta_file_path = test_meta.txt,
        counts_file_path = test_counts.h5ad,
        counts_data = 'hgnc_symbol',
        output_path = out_path)
```

####  Example running a microenviroments file
```shell
from cellphonedb.src.core.methods import cpdb_analysis_method

means, deconvoluted = cpdb_analysis_method.call(
        cpdb_file_path = cellphonedb.zip,
        meta_file_path = test_meta.txt,
        counts_file_path = test_counts.h5ad,
        counts_data = 'hgnc_symbol',
        microenvs_file_path = microenvs_file_path,
        output_path = out_path)
```

####  Example running the DEG-based method with microenviroments file
```shell
from cellphonedb.src.core.methods import cpdb_degs_analysis_method

deconvoluted, means, relevant_interactions, significant_means = cpdb_degs_analysis_method.call(
        cpdb_file_path = cellphonedb.zip,
        meta_file_path = test_meta.txt,
        counts_file_path = test_counts.h5ad,
        counts_data = 'hgnc_symbol',
        microenvs_file_path = microenvs_file_path,
        output_path = out_path)
```

To understand the different analysis and results, please check the [results documentation](docs/RESULTS-DOCUMENTATION.md).


### Optional Parameters

~ **Optional Method parameters**:
- `counts_data`: [ensembl \| gene_name \| hgnc_symbol] Type of gene identifiers in the counts data
- `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 allocated (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
- `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]


~ **Optional Method Statistical parameters**
- `microenvs_file_path`: Spatial microenviroments input file. Restricts the cluster/cell_type interacting pairs to the cluster/cell_type 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/cell_type, 2nd column indicates the microenviroment name.  See example [here](https://github.com/ventolab/CellphoneDB/tree/master/in). 
- `pvalue`: P-value threshold [0.05]
- `debug_seed`: 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`. 

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

search_results = search_utils.search_analysis_results(
    query_cell_types_1 = list_of_cells_1,
    query_cell_types_2 = list_of_cells_2,
    query_genes = list_of_genes,
    query_interactions = list_of_interaction_names,
    significant_means = significant_means,
    deconvoluted = cpdb_deconvoluted,
    separator = '|',
    long_format = True
)

Examples of this are provided in the [tutorials](notebooks).
```
## Plotting results

Currently CellPhoneDB relies on external plotting implementations to represent the results. Some examples are provided in the [tutorials](notebooks).

Currently we recommend using tools such as: seaborn, ggplot or a more specific and tailored implementation as the ktplots:
[@zktuong](https://github.com/zktuong):
- [ktplots](https://www.github.com/zktuong/ktplots/) (R)
- [ktplotspy](https://www.github.com/zktuong/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](notebooks).

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.

## 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 db_releases_utils

display(HTML(db_releases_utils.get_remote_database_versions_html()['db_releases_html_table']))
``` 
See [examples](notebooks).
## Download version
The command to download a version from the remote repository is:
```shell
from cellphonedb.utils import db_utils

db_utils.download_database(cpdb_target_dir, cpdb_version)
``` 
See [examples](notebooks).

## 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](notebooks).

To generate such a database the user has to issue this command:
```shell
from cellphonedb.utils import db_utils

db_utils.create_db(cpdb_input_dir) 
```

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](https://cellphonedb.readthedocs.io/en/latest/#) section


## Citing CellphoneDB

**CellphoneDB v4**: Single-cell roadmap of human gonadal development. L Garcia-Alonso, V Lorenzi et al. 2022 Nature [link](https://www.nature.com/articles/s41586-022-04918-4)

**CellphoneDB v3**: Mapping the temporal and spatial dynamics of the human endometrium in vivo and in vitro. L Garcia-Alonso, L-François Handfield, K Roberts, K Nikolakopoulou et al. Nature Genetics 2021 [link](https://www.nature.com/articles/s41588-021-00972-2)

**CellPhoneDB**: 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](https://www.nature.com/articles/s41596-020-0292-x)

The first version of CellphoneDB was developed at the Teichmann Lab by Roser Vento-Tormo and Mirjana Efremova (CellphoneDB v1 and v2). Currently, it is being further developed and supported by the Vento-Tormo Lab (Wellcome Sanger Institute, Cambridge, UK; CellphoneDB ≥v3).

            

Raw data

            {
    "_id": null,
    "home_page": "https://cellphonedb.org",
    "name": "CellphoneDB",
    "maintainer": "VentoLab",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "contact@cellphonedb.org",
    "keywords": "",
    "author": "TeichLab/VentoLab",
    "author_email": "contact@cellphonedb.org",
    "download_url": "https://files.pythonhosted.org/packages/8e/0b/8897cfd1c360d80d51f9dd84f441a7cac0289331db09042be2c3c517dade/CellphoneDB-4.0.0.macosx-10.9-x86_64.tar.gz",
    "platform": null,
    "description": "[![Database](https://img.shields.io/github/v/release/ventolab/cellphonedb-data.svg?color=blue&label=database)](https://github.com/ventolab/CellphoneDB-data) [![Python package](https://img.shields.io/pypi/v/cellphonedb.svg?color=brightgreen&label=python-package)](https://pypi.org/project/cellphonedb)\n# CellPhoneDB \n\n## What is CellPhoneDB?\n\nCellPhoneDB is a publicly available repository of curated receptors, ligands and their interactions in **HUMAN**. CellPhoneDB can be used to search for a particular ligand/receptor, or interrogate your own single-cell transcriptomics data (or even bulk transcriptomics data if your samples represent pure populations!). \n\nSubunit architecture is included for both ligands and receptors, 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 CellPhoneDB includes only manually curated & reviewd molecular interactions with evidenced role in cellular communication.\n\nFor more details on the analysis check the [DOCUMENTATION](https://cellphonedb.readthedocs.io/en/latest/#). \n\nPlease cite our protocols paper [Efremova et al 2020](https://www.nature.com/articles/s41596-020-0292-x) or [Garcia-Alonso et al](https://www.nature.com/articles/s41588-021-00972-2) (for CellphoneDB >= v3.0).\n\n\n## New in CellPhoneDB-data v4.1.0\n\nThis release of CellphoneDB database integrates new manually reviewed interactions with evidenced roles in cell-cell communication together with existing datasets that pertain to cellular communication (such as Shilts *et al.* 2022 and Kanemura *et al.* 2023). Recently, the database expanded to include non-protein molecules acting as ligands.\n\n1. CellPhoneDB has been implemented as a python package, improving its efficiency and adding new methods, such as the CellPhoneDB results query function.\n2. Manually curated more protein-protein interactions involved in cell-cell communication, with a special focus on proteins acting as heteromeric complexes [cellphonedb-data v4.1.0](https://github.com/ventolab/cellphonedb-data). The new database includes more than [2,900 high-confidence interactions](https://www.cellphonedb.org/database.html), including heteromeric complexes. In this version we haved added new G-protein-coupled receptors interactions from Kanemura *et al.* 2023 and  Shilts *et al.* 2022.\n3. Interactions retrieved from external resources have been removed from this release to include high-confidence interactions only.\n4. [Tutorials](notebooks) for the new CellPhoneDB implementation.\n\nSee updates from [previous releases here](https://github.com/ventolab/CellphoneDB/blob/master/docs/RESULTS-DOCUMENTATION.md#release-notes).\n\n\n## Installing CellPhoneDB \nNOTE: 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`.\n\nWe highly recommend using an isolated python environment (as described in steps 1 and 2) using [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) or [virtualenv](https://docs.python.org/3/library/venv.html) but you could of course omit these steps and install via `pip` immediately.\n\n1. Create python=>3.8 environment\n- Using conda: `conda create -n cpdb python=3.8`\n- Using virtualenv: `python -m venv cpdb`\n\n2. Activate environment\n- Using conda: `source activate cpdb`\n- Using virtualenv: `source cpdb/bin/activate`\n\n3. Install CellPhoneDB `pip install cellphonedb`\n\n\n## Running CellPhoneDB Methods\n\nPlease, activate your environment if you didn't previously\n- Using conda: `source activate cpdb`\n- Using virtualenv: `source cpdb/bin/activate`\n\nWe have created a set of tutorials that can be accessed for each To use the example data, please [tutorials and data](notebooks).\n\n### Prepatring INPUTS\n#### Preparing your counts input file (mandatory)\nCounts 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. \n\n#### Preparing your DEGs file (optional, if `method degs_analysis`)\nThis is a two columns file indicanting which gene is specific or upregulated in a cell type (see [example](in/endometrium_atlas_example/endometrium_example_DEGs.tsv) ). 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](notebooks) for both Seurat and Scanpy users. It is on you to design a DEG analysis appropiated for your research question. \n\n#### Preparing your microenviroments file (optional, if `microenvs_file_path`)\nThis is a two columns file indicating which cell type is in which spatial microenvironment (see [example](in/endometrium_atlas_example/endometrium_example_microenviroments.tsv) ). CellphoneDB will use this information to define possible pairs of interacting cells (i.e. pairs of clusters co-appearing in a microenvironment). \n\n### RUN examples\n\nFor more detailed examples refer to out tutorials [here](notebooks).\n####  Example with running the DEG-based method\n```shell\nfrom cellphonedb.src.core.methods import cpdb_degs_analysis_method\n\ndeconvoluted, means, relevant_interactions, significant_means = cpdb_degs_analysis_method.call(\n        cpdb_file_path = cellphonedb.zip,\n        meta_file_path = test_meta.txt,\n        counts_file_path = test_counts.h5ad,\n        degs_file_path = degs_file_path,\n        counts_data = 'hgnc_symbol',\n        threshold = 0.1,\n        output_path = out_path)\n```\n\n####  Example with running the statistical method\n```shell\nfrom cellphonedb.src.core.methods import cpdb_statistical_analysis_method\n\ndeconvoluted, means, pvalues, significant_means = cpdb_statistical_analysis_method.call(\n        cpdb_file_path = cellphonedb.zip,\n        meta_file_path = test_meta.txt,\n        counts_file_path = test_counts.h5ad,\n        counts_data = 'hgnc_symbol',\n        output_path = out_path)\n```\n\n#### Example without using the statistical method\n - **Using text files**\n```shell\nfrom cellphonedb.src.core.methods import cpdb_analysis_method\n\nmeans, deconvoluted = cpdb_analysis_method.call(\n        cpdb_file_path = cellphonedb.zip,\n        meta_file_path = test_meta.txt,\n        counts_file_path = test_counts.txt,\n        counts_data = 'hgnc_symbol',\n        output_path = out_path)\n```\n\n - **Using h5ad count file**\n```shell\nfrom cellphonedb.src.core.methods import cpdb_analysis_method\n\nmeans, deconvoluted = cpdb_analysis_method.call(\n        cpdb_file_path = cellphonedb.zip,\n        meta_file_path = test_meta.txt,\n        counts_file_path = test_counts.h5ad,\n        counts_data = 'hgnc_symbol',\n        output_path = out_path)\n```\n\n####  Example running a microenviroments file\n```shell\nfrom cellphonedb.src.core.methods import cpdb_analysis_method\n\nmeans, deconvoluted = cpdb_analysis_method.call(\n        cpdb_file_path = cellphonedb.zip,\n        meta_file_path = test_meta.txt,\n        counts_file_path = test_counts.h5ad,\n        counts_data = 'hgnc_symbol',\n        microenvs_file_path = microenvs_file_path,\n        output_path = out_path)\n```\n\n####  Example running the DEG-based method with microenviroments file\n```shell\nfrom cellphonedb.src.core.methods import cpdb_degs_analysis_method\n\ndeconvoluted, means, relevant_interactions, significant_means = cpdb_degs_analysis_method.call(\n        cpdb_file_path = cellphonedb.zip,\n        meta_file_path = test_meta.txt,\n        counts_file_path = test_counts.h5ad,\n        counts_data = 'hgnc_symbol',\n        microenvs_file_path = microenvs_file_path,\n        output_path = out_path)\n```\n\nTo understand the different analysis and results, please check the [results documentation](docs/RESULTS-DOCUMENTATION.md).\n\n\n### Optional Parameters\n\n~ **Optional Method parameters**:\n- `counts_data`: [ensembl \\| gene_name \\| hgnc_symbol] Type of gene identifiers in the counts data\n- `iterations`: Number of iterations for the statistical analysis [1000]\n- `threshold`: % of cells expressing the specific ligand/receptor\n- `result_precision`: Number of decimal digits in results [3]\n- `output_path`: Directory where the results will be allocated (the directory must exist) [out]\n- `output_suffix`: Output format of the results files (time stamp will be added to filename if not present) [txt]\n- `subsampling`: Enable subsampling\n- `subsampling_log`: Enable subsampling log1p for non log-transformed data inputs !!mandatory!!\n- `subsampling_num_pc`: Subsampling NumPC argument (number of PCs to use) [100]\n- `subsampling_num_cells`: Number of cells to subsample the dataset [1/3 of cells]\n\n\n~ **Optional Method Statistical parameters**\n- `microenvs_file_path`: Spatial microenviroments input file. Restricts the cluster/cell_type interacting pairs to the cluster/cell_type 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/cell_type, 2nd column indicates the microenviroment name.  See example [here](https://github.com/ventolab/CellphoneDB/tree/master/in). \n- `pvalue`: P-value threshold [0.05]\n- `debug_seed`: Debug random seed -1. To disable it please use a value >=0 [-1]\n- `threads`: Number of threads to use. >=1 [4]\n\n\n### Query results\n\nCellPhoneDB 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`. \n\nThrough 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.\n\n```shell\nfrom cellphonedb.utils import search_utils\n\nsearch_results = search_utils.search_analysis_results(\n    query_cell_types_1 = list_of_cells_1,\n    query_cell_types_2 = list_of_cells_2,\n    query_genes = list_of_genes,\n    query_interactions = list_of_interaction_names,\n    significant_means = significant_means,\n    deconvoluted = cpdb_deconvoluted,\n    separator = '|',\n    long_format = True\n)\n\nExamples of this are provided in the [tutorials](notebooks).\n```\n## Plotting results\n\nCurrently CellPhoneDB relies on external plotting implementations to represent the results. Some examples are provided in the [tutorials](notebooks).\n\nCurrently we recommend using tools such as: seaborn, ggplot or a more specific and tailored implementation as the ktplots:\n[@zktuong](https://github.com/zktuong):\n- [ktplots](https://www.github.com/zktuong/ktplots/) (R)\n- [ktplotspy](https://www.github.com/zktuong/ktplotspy/) (python)\n\n\n## Using different database versions\nCellPhoneDB 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](notebooks).\n\nFirst, 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.\n\nThe 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.\n\n## Listing remote available versions\nThe command to list available versions from the remote repository is:\n```shell\nfrom IPython.display import HTML, display\nfrom cellphonedb.utils import db_releases_utils\n\ndisplay(HTML(db_releases_utils.get_remote_database_versions_html()['db_releases_html_table']))\n``` \nSee [examples](notebooks).\n## Download version\nThe command to download a version from the remote repository is:\n```shell\nfrom cellphonedb.utils import db_utils\n\ndb_utils.download_database(cpdb_target_dir, cpdb_version)\n``` \nSee [examples](notebooks).\n\n## Generating user-specific custom database\nA user can generate custom databases and use them. In order to generate a new database, a user can provide his/her own lists.\n\nWe 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](notebooks).\n\nTo generate such a database the user has to issue this command:\n```shell\nfrom cellphonedb.utils import db_utils\n\ndb_utils.create_db(cpdb_input_dir) \n```\n\nResult database file is generated in the folder `out` with `cellphonedb_{datetime}.zip`.\nDo not change the name of the input files, otherwise CellPhoneDB will not recognize them and and error will be thrown.\n\n\n## Contributing to CellPhoneDB\n\nCellPhoneDB is an open-source project. If you are interested in contributing to this project, please let us know.\n\nYou can check all project documentation in the [docs](https://cellphonedb.readthedocs.io/en/latest/#) section\n\n\n## Citing CellphoneDB\n\n**CellphoneDB v4**: Single-cell roadmap of human gonadal development. L Garcia-Alonso, V Lorenzi et al. 2022 Nature [link](https://www.nature.com/articles/s41586-022-04918-4)\n\n**CellphoneDB v3**: Mapping the temporal and spatial dynamics of the human endometrium in vivo and in vitro. L Garcia-Alonso, L-Fran\u00e7ois Handfield, K Roberts, K Nikolakopoulou et al. Nature Genetics 2021 [link](https://www.nature.com/articles/s41588-021-00972-2)\n\n**CellPhoneDB**: 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](https://www.nature.com/articles/s41596-020-0292-x)\n\nThe first version of CellphoneDB was developed at the Teichmann Lab by Roser Vento-Tormo and Mirjana Efremova (CellphoneDB v1 and v2). Currently, it is being further developed and supported by the Vento-Tormo Lab (Wellcome Sanger Institute, Cambridge, UK; CellphoneDB \u2265v3).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Inferring cell-cell communication",
    "version": "4.0.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e0b8897cfd1c360d80d51f9dd84f441a7cac0289331db09042be2c3c517dade",
                "md5": "5f51cecf4274bb6bf4d6e2a07c7e4b8e",
                "sha256": "41bc3fc64645b65f3d1b31c9de1bea6e5da2e8fcc8076262cd8c0d4e3cca39f1"
            },
            "downloads": -1,
            "filename": "CellphoneDB-4.0.0.macosx-10.9-x86_64.tar.gz",
            "has_sig": false,
            "md5_digest": "5f51cecf4274bb6bf4d6e2a07c7e4b8e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 102868,
            "upload_time": "2023-03-10T18:05:27",
            "upload_time_iso_8601": "2023-03-10T18:05:27.433412Z",
            "url": "https://files.pythonhosted.org/packages/8e/0b/8897cfd1c360d80d51f9dd84f441a7cac0289331db09042be2c3c517dade/CellphoneDB-4.0.0.macosx-10.9-x86_64.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-10 18:05:27",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "cellphonedb"
}
        
Elapsed time: 0.08306s