Skip to content

Commit

Permalink
add data from Neph et al. 2012 (Cell)
Browse files Browse the repository at this point in the history
  • Loading branch information
slowkow committed Mar 12, 2015
1 parent 9f5bdbf commit 004de3c
Show file tree
Hide file tree
Showing 6 changed files with 601 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,9 @@
# Change Log

## 1.1
### Added
- Data sources: Neph et al. 2012 (Cell).

## 1.0
### Added
- Data sources: TRED, ITFP, ENCODE.
8 changes: 4 additions & 4 deletions DESCRIPTION
@@ -1,11 +1,11 @@
Package: tftargets
Type: Package
Title: Human Transcription Factor Targets
Version: 1.0
Date: 2015-03-02
Version: 1.1
Date: 2015-03-12
Authors@R: 'Kamil Slowikowski <slowikow@broadinstitute.org> [aut,cre]'
Description: A data package with lists of genes that are known or predicted to
be targeted by transcription factors. I scraped the data from TRED and
ITFP. I also downloaded ENCODE ChIP-seq data from UCSC.
be targeted by transcription factors. Data sources include: TRED, ITFP,
ENCODE ChIP-seq data from UCSC, and Neph et al. 2012 (Cell).
LazyData: true
License: CC0
14 changes: 14 additions & 0 deletions R/data.R
Expand Up @@ -34,3 +34,17 @@
#' }
#' @source \url{http://hgdownload.cse.ucsc.edu/goldenpath/hg19/encodeDCC/wgEncodeRegTfbsClustered/}
"ENCODE"

#' Transcription factor targets from Neph et al. 2012.
#'
#' Human transcription factor targets obtained from DNaseI footprinting and TF
#' recognition sequences. Targets only include transcription factors.
#'
#' @format A list of lists keyed by cell type names. Each sublist is keyed by
#' transcription factor names and returns a gene vector.
#' \describe{
#' \item{JUN}{integer vector of Entrez Gene IDs for genes targeted by JUN}
#' ...
#' }
#' @source \url{http://www.regulatorynetworks.org/}
"Neph2012"
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -12,6 +12,10 @@ This package contains the following datasets:
from ENCODE. (Source:
http://hgdownload.cse.ucsc.edu/goldenpath/hg19/encodeDCC/wgEncodeRegTfbsClustered/)

* `Neph2012`: Transcription factor targets discovered by DNaseI footprinting
and TF recognition sequences. Targets include only transcription factors and
not other genes. (Source: http://www.regulatorynetworks.org/)

Download and load the RData file:

```{r}
Expand Down Expand Up @@ -49,4 +53,12 @@ List the targets of a transcription factor called `STAT3`:
[58] 495 529 534 550 571 577 581 586 593 596 597 598 602 622 627 631 636 637 640
[77] 651 658 667 669 687 694 695 714 740 752 753 770 773 779 780 781 783 788 800
[96] 805 811 814 817 821
# Entrez Gene IDs.
> Neph2012[["AG10803-DS12374"]][["STAT3"]]
[1] 466 1386 467 468 22809 22926 11016 1385 9586 1390 10664
[12] 1958 1959 1960 1961 2735 2736 2737 148979 2969 8462 9314
[23] 4149 4150 4609 4800 4801 4802 2494 5076 5080 5453 5454
[34] 6667 6668 6670 6671 6774 7020 7021 7022 29842 7490 7494
[45] 51043 7707 10127
```

0 comments on commit 004de3c

Please sign in to comment.