MELD
Project description
MELD
Quantifying the effect of experimental perturbations at single-cell resolution
Tutorials
For a quick-start tutorial of MELD in Google CoLab, check out this notebook from our Machine Learning Workshop:
If you're looking for an in-depth tutorial of MELD and VFC, start here:
If you'd like to see how to use MELD without VFC, start here:
Introduction
MELD is a Python package for quantifying the effects of experimental perturbations. For an in depth explanation of the algorithm, please read the associated article:
The goal of MELD is to identify populations of cells that are most affected by an experimental perturbation. Rather than clustering the data first and calculating differential abundance of samples within clusters, MELD provides a density estimate for each scRNA-seq sample for every cell in each dataset. Comparing the ratio between the density of each sample provides a quantitative estimate the effect of a perturbation at the single-cell level. We can then identify the cells most or least affected by the perturbation.
You can also watch a seminar explaining MELD given by @dburkhardt:
Installation
pip install meld
Requirements
MELD requires Python >= 3.6. All other requirements are installed automatically by pip
.
Usage example
import numpy as np
import meld
# Create toy data
n_samples = 500
n_dimensions = 100
data = np.random.normal(size=(n_samples, n_dimensions))
sample_labels = np.random.choice(['treatment', 'control'], size=n_samples)
# Estimate density of each sample over the graph
sample_densities = meld.MELD().fit_transform(data, sample_labels)
# Normalize densities to calculate sample likelihoods
sample_likelihoods = meld.utils.normalize_densities(sample_densities)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file meld-1.0.2.tar.gz
.
File metadata
- Download URL: meld-1.0.2.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 696f67d4e88fc51f07463dcf96d3195734d1e3464c55ee95ebed2cf1c38134e9 |
|
MD5 | 0da1f3ce34f319a1e2ee59600d59b8d7 |
|
BLAKE2b-256 | 64347a43890031d05b2d3ed269ea6fa256016a8675f2420255caf22bf33bff98 |
File details
Details for the file meld-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: meld-1.0.2-py3-none-any.whl
- Upload date:
- Size: 26.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 251c469fc041b7daa3abec22b69fbfeafc7cebb10b4338cdf87450be5ad85fd4 |
|
MD5 | 777bd5592488c7e69f9c5902cde3e6b1 |
|
BLAKE2b-256 | 0a96bc37de0bf197ce026ebba72bf7267f5a7124cc79a276781cdb6220d349f1 |