-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
129 lines (91 loc) · 3.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
title: ""
author: "`r rworkflows::use_badges(branch='main')`"
date: "<h5>README updated: <i>`r format( Sys.Date(), '%b-%d-%Y')`</i></h5>"
output:
github_document
---
```{r, echo=FALSE, include=FALSE}
pkg <- read.dcf("DESCRIPTION", fields = "Package")[1]
description <- read.dcf("DESCRIPTION", fields = "Description")[1]
```
## ``r pkg``: `r gsub("echoverse module: ","", description)`
This R package is part of the *echoverse* suite that supports [`echolocatoR`](https://github.com/RajLabMSSM/echolocatoR):
an automated genomic fine-mapping pipeline.
If you use ``r pkg``, please cite:
> `r citation(pkg)$textVersion`
## Installation
```R
if(!require("remotes")) install.packages("remotes")
remotes::install_github("RajLabMSSM/`r pkg`")
library(`r pkg`)
```
## Documentation
### [Website](https://rajlabmssm.github.io/`r pkg`)
### [Getting started](https://rajlabmssm.github.io/`r pkg`/articles/`r pkg`)
## Datasets
For more detailed information about each dataset, use `?`:
`R library(echolocatoR) ?NOTT_2019.interactome # example dataset`
### Epigenomic & genome-wide annotations
#### [Nott et al. (2019)](https://science.sciencemag.org/content/366/6469/1134.abstract)
- Data from this publication contains results from cell type-specific
(neurons, oligodendrocytes, astrocytes, microglia, & peripheral
myeloid cells) epigenomic assays (H3K27ac, ATAC, H3K4me3) from human
brain tissue.
- For detailed metadata, see:
``` r
data("NOTT_2019.bigwig_metadata")
```
- Built-in datasets:
- Enhancer/promoter coordinates (as *GenomicRanges*)
``` r
data("NOTT_2019.interactome")
# Examples of the data nested in "NOTT_2019.interactome" object:
NOTT_2019.interactome$`Neuronal promoters`
NOTT_2019.interactome$`Neuronal enhancers`
NOTT_2019.interactome$`Microglia promoters`
NOTT_2019.interactome$`Microglia enhancers`
...
...
```
- PLAC-seq enhancer-promoter interactome coordinates
``` r
NOTT_2019.interactome$H3K4me3_around_TSS_annotated_pe
NOTT_2019.interactome$`Microglia interactome`
NOTT_2019.interactome$`Neuronal interactome`
NOTT_2019.interactome$`Oligo interactome`
...
...
```
- API access to full bigWig files on UCSC Genome Browser, which
includes
- Epigenomic reads (as *GenomicRanges*)
- Aggregate epigenomic *score* for each cell type - assay
combination
#### [Corces et al. (2020)](https://www.biorxiv.org/content/10.1101/2020.01.06.896159v1)
- Data from this preprint contains results from bulk and single-cell
chromatin accessibility epigenomic assays in 39 human brains.
``` r
data("CORCES_2020.bulkATACseq_peaks")
data("CORCES_2020.cicero_coaccessibility")
data("CORCES_2020.HiChIP_FitHiChIP_loop_calls")
data("CORCES_2020.scATACseq_celltype_peaks")
data("CORCES_2020.scATACseq_peaks")
```
#### [XGR](http://xgr.r-forge.r-project.org)
- API access to a diverse library of cell type/line-specific
epigenomic (e.g. ENCODE) and other genome-wide annotations.
#### [Roadmap](http://www.roadmapepigenomics.org)
- API access to cell type-specific epigenomic data.
#### [biomaRt](https://bioconductor.org/packages/release/bioc/html/biomaRt.html)
- API access to various genome-wide SNP annotations (e.g. missense,
nonsynonmous, intronic, enhancer).
#### [HaploR](https://cran.r-project.org/web/packages/haploR/vignettes/haplor-vignette.html)
- API access to known per-SNP QTL and epigenomic data hits.
<hr>
## Contact
<a href="https://bschilder.github.io/BMSchilder/" target="_blank">Brian
M. Schilder, Bioinformatician II</a>
<a href="https://rajlab.org" target="_blank">Raj Lab</a>
<a href="https://icahn.mssm.edu/about/departments/neuroscience" target="_blank">Department
of Neuroscience, Icahn School of Medicine at Mount Sinai</a>