Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanaylab/metacell
Metacell - Single-cell mRNA Analysis
https://github.com/tanaylab/metacell
single-cell-rna-seq
Last synced: 3 months ago
JSON representation
Metacell - Single-cell mRNA Analysis
- Host: GitHub
- URL: https://github.com/tanaylab/metacell
- Owner: tanaylab
- License: other
- Created: 2019-07-14T07:20:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T12:27:21.000Z (about 1 year ago)
- Last Synced: 2024-06-17T08:33:44.156Z (5 months ago)
- Topics: single-cell-rna-seq
- Language: R
- Homepage: https://tanaylab.github.io/metacell
- Size: 24.3 MB
- Stars: 102
- Watchers: 5
- Forks: 26
- Open Issues: 29
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- awesome-single-cell - MetaCell - [R, C++] - Analysis of single cell RNA-seq data by computing partitions of a cell similarity graph into small homogeneous groups of cells called metacells. (Software packages / RNA-seq)
README
---
output:
md_document:
variant: markdown_github
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
[![DOI](https://zenodo.org/badge/196806305.svg)](https://zenodo.org/badge/latestdoi/196806305)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)# metacell
The MetaCell R package facilitates analysis of single cell RNA-seq UMI matrices
by computing partitions of a cell similarity graph into small (~20-200 typically) homogeneous groups of cells which are defined as metacells (MCs). The derived MCs are then used for building different representations of the data, allowing matrix or 2D graph visualization forming a basis for analysis of cell types, subtypes, transcriptional gradients, cell-cycle variation, gene modules and their regulatory models and more. More details on the usage of the MetaCell pipeline is available in the package vignettes, and in papers using it.#### References:
Method: Baran et al. 2018 ([Genome Biology](https://genomebiology.biomedcentral.com/articles/10.1186/s13059-019-1812-2), [bioarxiv](https://www.biorxiv.org/content/early/2018/10/08/437665)).
Functions reference and usage vignettes are available in the package [homepage](https://tanaylab.github.io/metacell).
Examples of applications:
* [Li et al., Cell 2018](https://www.sciencedirect.com/science/article/pii/S009286741831568X) (scRNA-seq of immune cells from human melanoma tumors)
* [Giladi et al., Nat Cell Biol 2018](http://www.nature.com/articles/s41556-018-0121-4) (Mouse hematopoiesis scRNA-seq)
* [Sebe-pedros et al., NEE 2018](https://www.nature.com/articles/s41559-018-0575-6) (whole organisms scRNA-seq)
* [Sebe-pedros et al., Cell 2018](https://www.cell.com/cell/abstract/S0092-8674(18)30596-8) (whole organism scRNA-seq)
* [Bornstein et al., Nature 2018](https://www.nature.com/articles/s41586-018-0346-1) (thymic stroma scRNA-seq)
* [Cohen et al., Cell 2018](https://www.cell.com/cell/fulltext/S0092-8674(18)31181-4) (lung scRNA-seq)#### Installation
```{r, eval=FALSE}
if (!require("BiocManager")) install.packages('BiocManager')
BiocManager::install("tanaylab/metacell")
```**Note**: Metacell is implemented in R and C++. In particular it uses the Tanay group tgstat library that utilizes shared memory and distributed computing (as well as some specific optional CPU features). The package is tested on linux and macbooks, and is currently not compatible on Windows. A typical application will require at least 16G RAM.
For heavier applications (100K cells) we recommend a dual CPU multi-core workstation with 128GM RAM or more.