-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from KrishnaswamyLab/dev
README update
- Loading branch information
Showing
4 changed files
with
67 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# MELD (Manifold Enhancement of Latent Dimensions) | ||
### Quantifying the effect of experimental perturbations in scRNA-seq data. | ||
|
||
|
||
[![Latest PyPi version](https://img.shields.io/pypi/v/MELD.svg)](https://pypi.org/project/MELD/) | ||
[![Travis CI Build](https://api.travis-ci.com/KrishnaswamyLab/MELD.svg?branch=master)](https://travis-ci.com/KrishnaswamyLab/MELD) | ||
[![Coverage Status](https://coveralls.io/repos/github/KrishnaswamyLab/MELD/badge.svg?branch=master)](https://coveralls.io/github/KrishnaswamyLab/MELD?branch=master) | ||
[![Read the Docs](https://img.shields.io/readthedocs/meld-docs.svg)](https://meld-docs.readthedocs.io/) | ||
[![bioRxiv Preprint](https://zenodo.org/badge/DOI/10.1101/532846.svg)](https://doi.org/10.1101/532846) | ||
[![Twitter](https://img.shields.io/twitter/follow/KrishnaswamyLab.svg?style=social&label=Follow)](https://twitter.com/KrishnaswamyLab) | ||
[![GitHub stars](https://img.shields.io/github/stars/KrishnaswamyLab/MELD.svg?style=social&label=Stars)](https://github.com/KrishnaswamyLab/MELD/) | ||
|
||
### Quick Start | ||
* [**Guided tutorial in Python**](https://nbviewer.jupyter.org/github/KrishnaswamyLab/MELD/blob/master/notebooks/Wagner2018_Chordin_Cas9_Mutagenesis.ipynb). | ||
|
||
### Introduction | ||
|
||
MELD is a Python package for quantifying the effects of experimental perturbations. For an in depth explanation of the algorithm, read our manuscript on BioRxiv. | ||
|
||
[**Enhancing experimental signals in single-cell RNA-sequencing data using graph signal processing**. Daniel B Burkhardt\*, Jay S Stanley\*, Ana Luisa Perdigoto, Scott A Gigante, Kevan C Herold, Guy Wolf, Antonio J Giraldez, David van Dijk, Smita Krishnaswamy. BioRxiv. doi:10.1101/532846.](<https://www.biorxiv.org/content/10.1101/532846v1>) | ||
|
||
The goal of MELD is to identify populations of cells that are most affected by an experimental perturbation. Consider a simple two-sample experiment: one experimental sample and one control sample. | ||
|
||
The current state of the art is to cluster cells based on global gene expression then 1) calculate the number of cells from each condition in each cluster and 2) do differential expression analysis between conditions within each cluster. The fundamental flaw in this approach is that clusters obtained by global variation are more or less arbitrary partitions of the data. Users can vary parameters to get almost any number of clusters of whatever size they want, so there's no reason to expect that these clusters contain cells that are affected by the perturbation. | ||
|
||
MELD solves this problem by introducing the concept of the experimental signal as a *graph signal* on a cell similarity graph. MELD starts using the condition labels that indicate from which sample each cell was measured as the *Raw Experimental Signal* (RES). In signal processing terms, the RES is a noisy indicator of the effect of an experimental perturbation. This is because not only is the biological system and scRNA-seq measurement noisy, but also because an experimental perturbation is not expect to affect all cells in each sample equally. MELD uses methods from Graph Signal Processing to remove this noise to learn an Enhanced Experimental Signal that can be used to 1) identify individual cells that are the most or least enriched across conditions and 2) identify clusters of cells that are both transcriptionally similar are affected by the experimental perturbation to a similar extent. | ||
|
||
### Workflow | ||
|
||
The basic MELD workflow is: | ||
1. Load, filter, normalize, and transform a counts matrix (or CyTOF data matrix) from each sample | ||
2. Concatenate the matrices from each sample | ||
* `data, batch_idx = scprep.utils.combine_batches([batch_1, batch_2])` | ||
3. Learn a cell similarity graph `G` using [`graphtools`](www.github.com/KrishnaswamyLab/graphtools) | ||
* `G = gt.Graph(data)` | ||
3. Visualize data using [`PHATE`](www.github.com/KrishnaswamyLab/PHATE) | ||
4. Create the RES using the batch label for each cell | ||
* `RES = np.array([-1 if b == '1' else 1 for b in batch_idx])` | ||
5. Filter the RES to recover the EES | ||
* `EES = MELD().fit_transform(G, RES)` | ||
6. Use the RES and EES to recover Vertex Frequency Clusters | ||
* `VertexFrequencyCluster(k).fit_predict(G, RES, EES)` | ||
|
||
Now you can identify which clusters have the highest or lowest EES values and which genes vary most strongly with the EES. | ||
|
||
### Installation | ||
|
||
|
||
``` | ||
pip install --user meld | ||
``` | ||
|
||
### Requirements | ||
|
||
MELD requires Python >= 3.5. All other requirements are installed automatically by ``pip``. | ||
|
||
### Usage example | ||
``` | ||
import meld | ||
import graphtools | ||
G = graphtools.Graph(data, use_pygsp=True) | ||
EES = meld.MELD().fit_transform(G=G, RES=RES) | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Copyright (C) 2019 Krishnaswamy Lab, Yale University | ||
|
||
__version__ = "0.2.2-alpha" | ||
__version__ = "0.2.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,20 +34,21 @@ | |
version = open(version_py).read().strip().split( | ||
'=')[-1].replace('"', '').strip() | ||
|
||
readme = open('README.rst').read() | ||
readme = open('README.md').read() | ||
|
||
setup(name='meld', | ||
version=version, | ||
description='MELD', | ||
author='Daniel Burkhardt, Krishnaswamy Lab, Yale University', | ||
author_email='[email protected]', | ||
packages=['meld', ], | ||
license='Dual License: See LICENSE file', | ||
license='Dual License - See LICENSE file', | ||
install_requires=install_requires, | ||
extras_require={'test': test_requires, | ||
'doc': doc_requires}, | ||
test_suite='nose2.collector.collector', | ||
long_description=readme, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/KrishnaswamyLab/MELD', | ||
download_url="https://github.com/KrishnaswamyLab/MELD/archive/v{}.tar.gz".format( | ||
version), | ||
|