The goal of this package is to easily extract the genomic positions and the normalized expression of Fantom's enhancers (in TPM) in hg19.
require(devtools)
devtools::install_github("CharlesJB/FantomEnhancers.hg19")
The get_fantom_enhancers
functions returns a GRanges
object with all the enhancers and no metadata columns:
get_fantom_enhancers()
The get_fantom_enhancers_tpm
returns a GRanges
object with all the enhancers and selected metadata columns:
```
get_fantom_enhancers_tpm(cell_lines = "A549")
get_fantom_enhancers_tpm(cell_lines = c("A549", "K562"))
get_fantom_enhancers_tpm(cell_lines = c("A549", "K562"), merge.FUN = mean)
get_fantom_enhancers_tpm(cell_lines = c("A549", "K562"), merge.FUN = sum)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.