Skip to main content

MELD

Project description

MELD (Manifold Enhancement of Latent Dimensions)

Quantifying the effect of experimental perturbations in scRNA-seq data.

Latest PyPi version Travis CI Build Coverage Status Read the Docs bioRxiv Preprint Twitter GitHub stars

Quick Start

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.

Quantifying the effect of experimental perturbations 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.

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])
  1. Learn a cell similarity graph G using graphtools
  • G = gt.Graph(data)
  1. Visualize data using PHATE
  2. Create the RES using the batch label for each cell
  • RES = np.array([-1 if b == '1' else 1 for b in batch_idx])
  1. Filter the RES to recover the EES
  • EES = MELD().fit_transform(G, RES)
  1. 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

For this usage example to work, you must have already loaded library-size normalized and square root-transformed data into a variable named data. You also need to encode the condition of each sample into an array-like named RES of length data.shape[0]. Each entry of the RES array should be 1 if the cell is from the experimental condition and -1 if the cell is from the control condition.

   import meld
   import graphtools

   G = graphtools.Graph(data, use_pygsp=True)   
   EES = meld.MELD().fit_transform(G=G, RES=RES)

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

meld-0.3.2.tar.gz (16.2 kB view hashes)

Uploaded Source

Built Distribution

meld-0.3.2-py3-none-any.whl (26.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page