A tool for comparing populations in single-cell RNA-seq data with average overlap of marker gene lists
Project description
sc_average_overlap
A Python package for comparing clusters in single-cell RNA-seq data using the average overlap metric. This package is designed to work seamlessly with the Scanpy toolkit.
Getting Started
We recommend a Python version of 3.9.0+ in order to use the package.
Installation
Currently, the sc_average_overlap package may be downloaded from TestPyPI.
pip install -i https://test.pypi.org/simple/ sc-average-overlap
Instructions for Use
The functions in this package assume an AnnData object that contains group labels for the cells, and that differential expression analysis with sc.tl.rank_genes_groups() has been performed.
First you may import the sc_average_overlap package as follows:
import sc_average_overlap as ao
make_ao_dendrogram()
def make_ao_dendrogram(
adata: AnnData,
groupby: str,
linkage_method: str = 'complete',
de_key: str = 'rank_genes_groups',
key: str = None,
genes_to_filter: List = None
)
Given an AnnData object adata as input, this will first calculate pairwise average overlap scores for the clusters defined by the groupby parameter. You may specify a list of curated genes with the genes_to_filter argument, in which case all average overlap scores are based on the rankings of the user-specified gene list for each cluster.
Once this function is called, dendrogram information is saved into the AnnData. You may use Scanpy's plotting functions and specify the use of the average overlap dendrogram saved in the AnnData object.
An example function call:
ao.make_ao_dendrogram(adata, groupby='leiden')
ao.make_ao_dendrogram(adata, groupby='leiden', genes_to_filter=marker_gene_set) # providing a list of genes in marker_gene_set
plot_ao_dendrogram()
def plot_ao_dendrogram(
adata: AnnData,
key: str
)
Once make_ao_dendrogram has been called, you may plot the resulting cluster tree. key should be the name of the observations grouping used during DE gene analysis and when calling make_ao_dendrogram to make the tree.
An example function call:
ao.plot_ao_dendrogram(adata, key='leiden')
plot_ao_heatmap()
def plot_ao_heatmap(
adata: AnnData,
key: str,
plot_zscores: bool = False,
annot_decimal_format: str = '.1g'
)
You can plot a heatmap of all pairwise average overlap scores computed by calling the plot_ao_heatmap function. key should be the name of the observations grouping used during DE gene analysis and when calling make_ao_dendrogram to make the tree.
You can also plot the distances converted into z-scores. Average overlap follows a normal distribution when calculated on conjoint ranked lists - that is, the two ranked lists contain the same elements, just ranked differently. This gives a statistical interpretation of the resulting average overlap score. Only do this when specifying a specific marker gene set to base cluster rankings from, performed through providing a list of genes to the genes_to_filter argument when calling make_ao_dendrogram.
An example function call:
ao.plot_ao_heatmap(adata, key='leiden')
ao.plot_ao_heatmap(adata, key='leiden', plot_zscores=True)
get_cluster_markers()
def get_cluster_markers(
adata: AnnData,
cluster_label: str,
genes_to_filter: List = None,
n_genes: int = 50,
key: str = 'rank_genes_groups'
)
A helper function for extracting marker genes for a given cluster. Given sc.tl.rank_genes_groups() has already been run for one-vs-rest differential expression, retrieve markers of the given cluster as a list.
If a list of genes is specified, then this gives a list of those genes ranked by their differential expression for that cluster.
An example function call:
marker_genes = ao.get_cluster_markers(adata, cluster_label='0', n_genes=25)
## Or, just give a cluster's rankings (according to differential expression) of a preset gene list
genes_to_use = ['geneA', 'geneB', 'geneC']
marker_genes = ao.get_cluster_markers(adata, cluster_label='0', genes_to_filter=genes_to_use)
get_all_cluster_markers()
def get_all_cluster_markers(
adata: AnnData,
groupby: str,
n_genes: int = 50
):
An extension of get_cluster_markers(), which returns a combined list of every cluster's top n_genes marker genes, given that a partitioning has already been computed, such as through Leiden or Louvain clustering.
An example function call:
all_markers = ao.get_all_cluster_markers(adata, groupby='leiden', n_genes=25)
# Once a combined list of cluster markers is generated, we can see how they are ranked and base average overlap scores off of these rankings
ao.make_ao_dendrogram(adata, groupby='leiden', genes_to_filter=all_markers)
Authors
- Christopher Thai
License
This project is licensed under the MIT License - see the LICENSE file for details
Acknowledgments
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sc_average_overlap-1.0.6.tar.gz.
File metadata
- Download URL: sc_average_overlap-1.0.6.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acf2194d8692b6cb440d4155bc3dba6298dd81deedba7fb38855f0f0a4c2aa4e
|
|
| MD5 |
fd66a0d794af2e65895a40d714f44376
|
|
| BLAKE2b-256 |
cf10280f228c0fa2c64a00b24da3b2a76011972fbeb3eab36a1ad3ac9db2f03b
|
File details
Details for the file sc_average_overlap-1.0.6-py3-none-any.whl.
File metadata
- Download URL: sc_average_overlap-1.0.6-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4918c80c89f82b8d9c13a39dffe5100d5cf615c27db1506b5426dd0933166277
|
|
| MD5 |
19d9a98853029fd2a2dca5e6587fca7e
|
|
| BLAKE2b-256 |
d9ef1fe3debddb7b7e4d8c3517dc7830964234aa848a911c1c44b35081aafdf4
|