-
Notifications
You must be signed in to change notification settings - Fork 4
/
README.Rmd
executable file
·45 lines (32 loc) · 1.12 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
---
title: "MAGMA_Files_Public: README"
author: "<h4> Brian M. Schilder</h4>"
date: "<h4>Updated: <i>`r format( Sys.Date(), '%b-%d-%Y')`</i></h4>"
output:
github_document
editor_options:
chunk_output_type: inline
---
GWAS gene set files generated by *Multi-marker Analysis of GenoMic Annotation* ([`MAGMA`](https://ctg.cncr.nl/software/magma))
for use in downstream analyses (e.g. [`MAGMA_celltyping`](https://github.com/neurogenomics/MAGMA_Celltyping)).
## Usage
These files can be imported using `MAGMA_celltyping::import_magma`.
```{r, eval=FALSE}
if(!require(remotes)) install.packages("remotes")
if(!require(MAGMA.celltyping)) remotes::install_github("neurogenomics/MAGMA_celltyping@bschilder_dev")
```
```{r, eval=FALSE}
#### Search the MAGMA_Files_Public database's metadata ####
meta <- MAGMA.Celltyping::magma_files_metadata
#### Import MAGMA files ####
magma_dirs <- MAGMA.Celltyping::import_magma_files(ids = c("ieu-a-298"))
```
## [Metadata report](https://neurogenomics.github.io/MAGMA_Files_Public/vignettes/metadata_report.html)
<hr>
## Session Info
<details>
```{r}
utils::sessionInfo()
```
</details>
<br>