Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/databio/cocoa
Annotating epigenetic variation among samples with region sets in R
https://github.com/databio/cocoa
dna-methylation pca
Last synced: about 1 month ago
JSON representation
Annotating epigenetic variation among samples with region sets in R
- Host: GitHub
- URL: https://github.com/databio/cocoa
- Owner: databio
- License: other
- Created: 2018-03-07T18:47:43.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-13T20:30:05.000Z (10 months ago)
- Last Synced: 2024-09-12T04:08:13.592Z (3 months ago)
- Topics: dna-methylation, pca
- Language: R
- Homepage: http://code.databio.org/COCOA/
- Size: 4.26 MB
- Stars: 10
- Watchers: 11
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# COCOA: Coordinate Covariation Analysis
[![Build Status](https://travis-ci.com/databio/COCOA.svg?branch=master)](https://travis-ci.com/databio/COCOA)
**COCOA is a method for understanding epigenetic variation among samples.** COCOA can be used with epigenetic data that includes genomic coordinates and an epigenetic signal, such as DNA methylation and chromatin accessibility data. To describe the method on a high level, COCOA quantifies inter-sample variation with either a supervised or unsupervised technique then uses a database of "region sets" to annotate the variation among samples. A region set is a set of genomic regions that share a biological annotation, for instance transcription factor (TF) binding regions, histone modification regions, or open chromatin regions. COCOA can identify region sets that are associated with epigenetic variation between samples and increase understanding of variation in your data.## Installing COCOA
To install from Bioconductor (recommended):```{r, eval=FALSE, message=FALSE, warning=FALSE}
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")BiocManager::install("COCOA")
```COCOA may also be installed from Github:
```{r, eval=FALSE, message=FALSE, warning=FALSE}
devtools::install_github("databio/COCOA")
```or locally after downloading/cloning the source code:
```{r, eval=FALSE, message=FALSE, warning=FALSE}
install.packages("path/to/COCOA/directory", repos=NULL, type="source")
```## Learning How to Use COCOA
A vignette is included with the package that shows an [overview of COCOA](http://code.databio.org/COCOA/articles/IntroToCOCOA.html) and walks you through multiple analysis scenarios with code.