-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
74 lines (50 loc) · 2.37 KB
/
README.Rmd
File metadata and controls
74 lines (50 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures",
out.width = "100%"
)
```
# Localized Marker Detector
<!-- badges: start -->
<!-- badges: end -->
Localized Marker Detector (LMD) is a computational framework designed for the identification of gene expression markers localized to specific cell populations within single-cell RNA sequencing data. The major workflow of LMD comprises the following three main steps:
* Step1. Constructing a cell-cell affinity graph
* Step2. Diffusing the gene expression value across the cell graph
* Step3. Assigning a score to each gene based on the dynamics of its diffusion process
* Optional Downstream tasks
* Identifying gene modules and characterizing functional cell groups
* Cross-sample comparison
```{r pressure, echo=FALSE, out.width="100%", out.height="auto"}
knitr::include_graphics("./man/figures/LMD_workflow.png")
```
## Installation
LMD can be installed in R as follows:
``` r
install.packages("devtools")
devtools::install_github("KlugerLab/LocalizedMarkerDetector")
library("LocalizedMarkerDetector")
```
## Docker Installation
Alternatively, we provide a Docker environment with LMD and all its dependencies pre-installed. The pre-built Docker image can be downloaded using:
``` bash
docker pull ruiqi0130/lmd-rstudio:latest
```
and to run the docker container:
``` bash
docker run -it --rm --name lmd -p 8029:8787 -v /data/:/data/ docker.io/ruiqi0130/lmd-rstudio:latest
```
Here, change `/data:/data` to `<your_local_data_directory>:/data`. A rstudio will be on port 8029.
## Example tutorial
Please check [LMD tutorial](https://KlugerLab.github.io/LocalizedMarkerDetector/articles/).
## References
References of LMD functions can be found [here](https://KlugerLab.github.io/LocalizedMarkerDetector/reference/index.html).
For additional information, please reference our paper:
**Cluster-independent multiscale marker identification in single-cell RNA-seq data using localized marker detector (LMD)**
Ruiqi Li, Rihao Qu, Fabio Parisi, Francesco Strino, Hainan Lam, Jay S Stanley III, Xiuyuan Cheng, Peggy Myung, Yuval Kluger
*Communications Biology*. 2025 Jul 16;8(1):1058. doi: https://doi.org/10.1038/s42003-025-08485-y
<!-- Data used in this tutorial can be downloaded from [Tabula Muris](https://figshare.com/ndownloader/files/13092380). -->