-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.R
71 lines (61 loc) · 1.61 KB
/
index.R
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
## ----install, eval = FALSE-----------------------------------------------------------
## ## For installing Bioconductor packages
## if (!requireNamespace("BiocManager", quietly = TRUE)) {
## install.packages("BiocManager")
## }
##
## ## Install required packages
## BiocManager::install(
## c(
## "usethis", ## Utilities
## "here",
## "biocthis",
## "lobstr",
## "postcards",
## "sessioninfo",
## "SummarizedExperiment", ## Main containers / vis
## "iSEE",
## "edgeR", ## RNA-seq
## "ExploreModelMatrix",
## "limma",
## "recount3",
## "pheatmap", ## Visualization
## "ggplot2",
## "patchwork",
## "RColorBrewer",
## "ComplexHeatmap",
## "spatialLIBD" ## Advanced
## )
## )
## ----session_packages, eval = TRUE, message = FALSE----------------------------------
## Load the package at the top of your script
library("sessioninfo")
## Utilities
library("BiocStyle")
library("biocthis")
library("here")
library("lobstr")
library("postcards")
library("usethis")
library("sessioninfo")
## Main containers / vis
library("SummarizedExperiment")
library("iSEE")
## RNA-seq
library("edgeR")
library("ExploreModelMatrix")
library("limma")
library("recount3")
## Visualization
library("ComplexHeatmap")
library("ggplot2")
library("patchwork")
library("pheatmap")
library("RColorBrewer")
## Advanced
library("spatialLIBD")
## ----session_info--------------------------------------------------------------------
## Reproducibility information
options(width = 120)
session_info()
proc.time()