forked from YuLab-SMU/clusterProfiler_protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
54 lines (40 loc) · 1.35 KB
/
README.Rmd
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
---
output:
md_document:
variant: gfm
html_preview: false
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
# Using clusterProfiler to characterise Multi-Omics Data
If you use this work in published research, please cite:
Using clusterProfiler to characterise Multi-Omics Data
This repo contains source code and data to produce Figures of the above paper.
The `IBD_2_subtypes_example`, `Phyllostachys_heterocyla_example` and `single_cell_example` contain the
data, scripts and results of the three examples in the above article. Each sub directory contains
`input_data`, `result`, `script`.
+ input_data: contains all the data sets that used to generate the figures.
+ result: contains the results.
+ script: contains the source code to produce the figures.
More details information can be found from [here](https://yulab-smu.top/clusterProfiler_protocol/).
## Dependencies and locations
```{r, message=FALSE, echo=FALSE, warning = FALSE, setup}
library(tictoc)
library(MicrobiotaProcess)
library(clusterProfiler)
library(ggplot2)
library(enrichplot)
library(dplyr)
library(aplot)
library(DESeq2)
library(ggfun)
library(Seurat)
library(CelliD)
library(ggrepel)
library(ggsc)
library(patchwork)
library(gridExtra)
```
Here is the output of `sessionInfo()` of the system was compiled:
```{r, echo=FALSE}
sessionInfo()
```