-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
37 lines (27 loc) · 845 Bytes
/
README.Rmd
File metadata and controls
37 lines (27 loc) · 845 Bytes
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
---
title: "MSigDB"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
Houses gene lists from [Broad Institute Molecular Signatures](http://software.broadinstitute.org/gsea/msigdb/index.jsp) Database. They do want to keep track of their user counts so you might want to log in there as well. Note that there is an [msigdbr](https://github.com/igordot/msigdbr) package that is also uploaded to CRAN that provides
similar funcitonality.
Installation
==========
```r
devtools::install_github('oganm/MSigDB')
```
Usage
=====
```{r}
library(MSigDB)
names(MSigDB)
names(MSigDB$human)
head(names(MSigDB$human$H))
MSigDB$human$H$HALLMARK_PEROXISOME
```
`getMSigInfo` function simply navigates to the broad institute website with the relevant data
```r
getMSigInfo('HALLMARK_PEROXISOME','human')
```