sevenC
7C: Computational Chromosome Conformation Capture by Correlation of ChIP-seq at CTCF motifs
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 5 DOI reference(s) in README -
○Academic publication links
-
✓Committers with academic emails
1 of 5 committers (20.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.8%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
7C: Computational Chromosome Conformation Capture by Correlation of ChIP-seq at CTCF motifs
Basic Info
- Host: GitHub
- Owner: ibn-salem
- Language: R
- Default Branch: master
- Homepage: https://ibn-salem.github.io/sevenC
- Size: 26.8 MB
Statistics
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
sevenC
Computational Chromosome Conformation Capture by Correlation of ChIP-seq at CTCF motifs
Chromatin looping is an essential feature of eukaryotic genomes and can bring regulatory sequences, such as enhancers or transcription factor binding sites, in the close physical proximity of regulated target genes. Here, we provide sevenC, an R package that uses protein binding signals from ChIP-seq and sequence motif information to predict chromatin looping events. Cross-linking of proteins that bind close to loop anchors result in ChIP-seq signals at both anchor loci. These signals are used at CTCF motif pairs together with their distance and orientation to each other to predict whether they interact or not. The resulting chromatin loops might be used to associate enhancers or transcription factor binding sites (e.g., ChIP-seq peaks) to regulated target genes.
A more detailed explanation of the sevenC method together with prediction performance analysis is available in the associated preprint:
Ibn-Salem, J. & Andrade-Navarro, M. A. Computational Chromosome Conformation Capture by Correlation of ChIP-seq at CTCF motifs. bioRxiv 257584 (2018). https://doi.org/10.1101/257584
Intallation
To install the sevenC package, start R and enter:
R
if (!requireNamespace("BiocManager", quietly=TRUE))
install.packages("BiocManager")
BiocManager::install("sevenC")
Alternatively, the development version of sevenC can be installed from GitHub:
```R
install.packages("devtools")
devtools::install_github("ibn-salem/sevenC") ```
Basic usage example
Here we show how to use sevenC to predict chromatin looping interactions among CTCF motif locations on chromosome 22. As input, we only use CTCF motif locations and a single bigWig file from a STAT1 ChIP-seq experiment in human GM12878 cells.
Get motif pairs
```R library(sevenC)
load provided CTCF motifs in human genome
motifs <- motif.hg19.CTCF.chr22
get motifs pairs
gi <- prepareCisPairs(motifs, maxDist = 10^6) ```
Add ChIP-seq data and compute correaltion
```R
use example ChIP-seq bigWig file
bigWigFile <- system.file("extdata", "GM12878Stat1.chr221-30000000.bigWig", package = "sevenC")
add ChIP-seq coverage and compute correaltion at motif pairs
gi <- addCor(gi, bigWigFile) ```
Predict loops
```R
predict looping interactions among all motif pairs
loops <- predLoops(gi) ```
For more detailed usage instructions, see the package vignette or reference documentation.
Issues
Please report issues here: https://github.com/ibn-salem/sevenC/issues
Owner
- Name: Jonas Ibn-Salem
- Login: ibn-salem
- Kind: user
- Repositories: 5
- Profile: https://github.com/ibn-salem
GitHub Events
Total
Last Year
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| ibn-salem | j****m@g****e | 210 |
| Jonas Ibn-Salem | j****m@u****e | 20 |
| vobencha | v****n@r****g | 2 |
| vobencha | v****a@g****m | 2 |
| LiNk-NY | m****9@g****m | 1 |
Committer Domains (Top 20 + Academic)
Packages
- Total packages: 1
-
Total downloads:
- bioconductor 12,468 total
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 5
- Total maintainers: 1
bioconductor.org: sevenC
Computational Chromosome Conformation Capture by Correlation of ChIP-seq at CTCF motifs
- Homepage: https://github.com/ibn-salem/sevenC
- Documentation: https://bioconductor.org/packages/release/bioc/vignettes/sevenC/inst/doc/sevenC.pdf
- License: GPL-3
-
Latest release: 1.28.0
published 10 months ago
Rankings
Maintainers (1)
Dependencies
- InteractionSet >= 1.2.0 depends
- R >= 3.5 depends
- BiocGenerics >= 0.22.0 imports
- GenomeInfoDb >= 1.12.2 imports
- GenomicRanges >= 1.28.5 imports
- IRanges >= 2.10.3 imports
- S4Vectors >= 0.14.4 imports
- boot >= 1.3 imports
- data.table >= 1.10.4 imports
- methods >= 3.4.1 imports
- purrr >= 0.2.2 imports
- readr >= 1.1.0 imports
- rtracklayer >= 1.34.1 imports
- BiocStyle * suggests
- GenomicInteractions * suggests
- covr * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests