This document offers an introduction and overview of motifBreakR, which allows the biologist to judge whether the sequence surrounding a polymorphism or mutation is a good match to known transcription factor binding sites, and how much information is gained or lost in one allele of the polymorphism relative to another or mutation vs. wildtype. motifBreakR is flexible, giving a choice of algorithms for interrogation of genomes with motifs from public sources that users can choose from; these are 1) a weighted-sum, 2) log-probabilities, and 3) relative entropy. motifBreakR can predict effects for novel or previously described variants in public databases, making it suitable for tasks beyond the scope of its original design. Lastly, it can be used to interrogate any genome curated within Bioconductor.
motifBreakR works with position probability matrices (PPM). PPM are derived as the fractional occurrence of nucleotides A,C,G, and T at each position of a position frequency matrix (PFM). PFM are simply the tally of each nucleotide at each position across a set of aligned sequences. With a PPM, one can generate probabilities based on the genome, or more practically, create any number of position specific scoring matrices (PSSM) based on the principle that the PPM contains information about the likelihood of observing a particular nucleotide at a particular position of a true transcription factor binding site.
This guide includes a brief overview of the processing flow, an example focusing more in depth on the practical aspect of using motifBreakR, and finally a detailed section on the scoring methods employed by the package.
motifBreakR may be used to interrogate SNPs or SNVs for their potential effect on transcription factor binding by examining how the two alleles of the variant effect the binding score of a motif. The basic process is outlined in the figure below.
This straightforward process allows the interrogation of SNPs and SNVs in the context of the different species represented by BSgenome packages (at least 22 different species) and allows the use of the full MotifDb data set that includes over 4200 motifs across 8 studies and 22 organisms that we have supplemented with over 2800 additional motifs across four additional studies in Humans see data(encodemotif)
1, data(factorbook)
2, data(hocomoco)
3 and data(homer)
4 for the additional studies that we have included.
Practically motifBreakR has involves three phases.
MotifList
, and your preferred scoring method.This section offers an example of how to use motifBreakR to identify potentially disrupted transcription factor binding sites due to 701 SNPs output from a FunciSNP analysis of Prostate Cancer (PCa) genome wide association studies (GWAS) risk loci. The SNPs are included in this package here:
library(motifbreakR)
pca.snps.file <- system.file("extdata", "pca.enhancer.snps", package = "motifbreakR")
pca.snps <- as.character(read.table(pca.snps.file)[,1])
The simplest form of a motifBreakR analysis is summarized as follows:
variants <- snps.from.rsid(rsid = pca.snps,
dbSNP = SNPlocs.Hsapiens.dbSNP142.GRCh37,
search.genome = BSgenome.Hsapiens.UCSC.hg19)
motifbreakr.results <- motifbreakR(snpList = variants, pwmList = MotifDb, threshold = 0.9)
plotMB(results = motifbreakr.results, rsid = "rs7837328", effect = "strong")
Lets look at these steps more closely and see how we can customize our analysis.
Variants can be input either as a list of rsIDs or as a .bed file. The main factor determining which you will use is if your variants have rsIDs that are included in one of the Bioconductor SNPlocs
packages. The present selection is seen here:
library(BSgenome)
available.SNPs()
## [1] "SNPlocs.Hsapiens.dbSNP.20101109" "SNPlocs.Hsapiens.dbSNP.20120608"
## [3] "SNPlocs.Hsapiens.dbSNP141.GRCh38" "SNPlocs.Hsapiens.dbSNP142.GRCh37"
## [5] "SNPlocs.Hsapiens.dbSNP144.GRCh37" "SNPlocs.Hsapiens.dbSNP144.GRCh38"
## [7] "SNPlocs.Hsapiens.dbSNP149.GRCh38" "SNPlocs.Hsapiens.dbSNP150.GRCh38"
## [9] "XtraSNPlocs.Hsapiens.dbSNP141.GRCh38" "XtraSNPlocs.Hsapiens.dbSNP144.GRCh37"
## [11] "XtraSNPlocs.Hsapiens.dbSNP144.GRCh38"
For cases where your rsIDs are not available in a SNPlocs package, or you have novel variants that are not cataloged at all, variants may be entered in BED format as seen below:
snps.file <- system.file("extdata", "snps.bed", package = "motifbreakR")
read.delim(snps.file, header = FALSE)
## V1 V2 V3 V4 V5 V6
## 1 chr2 12581137 12581138 rs10170896 0 +
## 2 chr2 12594017 12594018 chr2:12594018:G:A 0 +
## 3 chr3 192388677 192388678 rs13068005 0 +
## 4 chr4 122361479 122361480 rs12644995 0 +
## 5 chr6 44503245 44503246 chr6:44503246:A:T 0 +
## 6 chr6 44503247 44503248 chr6:44503248:G:C 0 +
## 7 chr6 85232897 85232898 rs4510639 0 +
## 8 chr6 44501872 44501873 rs932680 0 +
Our requirements for the BED file are that it must include chromosome
, start
, end
, name
, score
and strand
fields – where the name field is required to be in one of two formats, either an rsID that is present in a SNPlocs package, or in the form chromosome:position:referenceAllele:alternateAllele
e.g., chr2:12594018:G:A
. It is also essential that the fields are TAB separated, not a mixture of tabs and spaces.
More to the point here are the two methods for reading in the variants.
We use the SNPlocs.Hsapiens.dbSNP142.GRCh37 which is the SNP locations and alleles defined in dbSNP142 as a source for looking up our rsIDs and BSgenome.Hsapiens.UCSC.hg19 which holds the reference sequence for UCSC genome build hg19. Additional SNPlocs packages are availble from Bioconductor.
library(SNPlocs.Hsapiens.dbSNP142.GRCh37) # dbSNP142 in hg19
library(BSgenome.Hsapiens.UCSC.hg19) # hg19 genome
head(pca.snps)
## [1] "rs1551515" "rs1551513" "rs17762938" "rs4473999" "rs7823297" "rs9656964"
snps.mb <- snps.from.rsid(rsid = pca.snps,
dbSNP = SNPlocs.Hsapiens.dbSNP142.GRCh37,
search.genome = BSgenome.Hsapiens.UCSC.hg19)
## Warning in rowids2rowidx(user_rowids, ids, x_rowids, ifnotfound): SNP ids not found: rs78914317, rs75425437, rs114099824, rs79509278, rs74738513
##
## They were dropped.
snps.mb
## GRanges object with 700 ranges and 4 metadata columns:
## seqnames ranges strand | SNP_id alleles_as_ambig REF
## <Rle> <IRanges> <Rle> | <character> <DNAStringSet> <DNAStringSet>
## rs10007915 chr4 [106065308, 106065308] * | rs10007915 S C
## rs10015716 chr4 [ 95548550, 95548550] * | rs10015716 R G
## rs10034824 chr4 [ 95524838, 95524838] * | rs10034824 K G
## rs10056823 chr5 [115609454, 115609454] * | rs10056823 S C
## rs1006140 chr19 [ 38778915, 38778915] * | rs1006140 R A
## ... ... ... ... . ... ... ...
## rs9901746 chr17 [ 36103149, 36103149] * | rs9901746 R G
## rs9908087 chr17 [ 69106937, 69106937] * | rs9908087 K T
## rs991429 chr17 [ 69109773, 69109773] * | rs991429 R G
## rs9973650 chr2 [238380266, 238380266] * | rs9973650 R G
## rs998071 chr4 [ 95591976, 95591976] * | rs998071 S C
## ALT
## <DNAStringSet>
## rs10007915 G
## rs10015716 A
## rs10034824 T
## rs10056823 G
## rs1006140 G
## ... ...
## rs9901746 A
## rs9908087 G
## rs991429 A
## rs9973650 A
## rs998071 G
## -------
## seqinfo: 93 sequences (1 circular) from hg19 genome
A far greater variety of variants may be read into motifBreakR via the snps.from.file
function. In fact motifBreakR will work with any organism present as a Bioconductor BSgenome package. This includes 76 genomes representing 22 species.
library(BSgenome)
genomes <- available.genomes()
length(genomes)
## [1] 87
genomes
## [1] "BSgenome.Alyrata.JGI.v1" "BSgenome.Amellifera.BeeBase.assembly4"
## [3] "BSgenome.Amellifera.UCSC.apiMel2" "BSgenome.Amellifera.UCSC.apiMel2.masked"
## [5] "BSgenome.Athaliana.TAIR.04232008" "BSgenome.Athaliana.TAIR.TAIR9"
## [7] "BSgenome.Btaurus.UCSC.bosTau3" "BSgenome.Btaurus.UCSC.bosTau3.masked"
## [9] "BSgenome.Btaurus.UCSC.bosTau4" "BSgenome.Btaurus.UCSC.bosTau4.masked"
## [11] "BSgenome.Btaurus.UCSC.bosTau6" "BSgenome.Btaurus.UCSC.bosTau6.masked"
## [13] "BSgenome.Btaurus.UCSC.bosTau8" "BSgenome.Celegans.UCSC.ce10"
## [15] "BSgenome.Celegans.UCSC.ce11" "BSgenome.Celegans.UCSC.ce2"
## [17] "BSgenome.Celegans.UCSC.ce6" "BSgenome.Cfamiliaris.UCSC.canFam2"
## [19] "BSgenome.Cfamiliaris.UCSC.canFam2.masked" "BSgenome.Cfamiliaris.UCSC.canFam3"
## [21] "BSgenome.Cfamiliaris.UCSC.canFam3.masked" "BSgenome.Dmelanogaster.UCSC.dm2"
## [23] "BSgenome.Dmelanogaster.UCSC.dm2.masked" "BSgenome.Dmelanogaster.UCSC.dm3"
## [25] "BSgenome.Dmelanogaster.UCSC.dm3.masked" "BSgenome.Dmelanogaster.UCSC.dm6"
## [27] "BSgenome.Drerio.UCSC.danRer10" "BSgenome.Drerio.UCSC.danRer5"
## [29] "BSgenome.Drerio.UCSC.danRer5.masked" "BSgenome.Drerio.UCSC.danRer6"
## [31] "BSgenome.Drerio.UCSC.danRer6.masked" "BSgenome.Drerio.UCSC.danRer7"
## [33] "BSgenome.Drerio.UCSC.danRer7.masked" "BSgenome.Ecoli.NCBI.20080805"
## [35] "BSgenome.Gaculeatus.UCSC.gasAcu1" "BSgenome.Gaculeatus.UCSC.gasAcu1.masked"
## [37] "BSgenome.Ggallus.UCSC.galGal3" "BSgenome.Ggallus.UCSC.galGal3.masked"
## [39] "BSgenome.Ggallus.UCSC.galGal4" "BSgenome.Ggallus.UCSC.galGal4.masked"
## [41] "BSgenome.Ggallus.UCSC.galGal5" "BSgenome.Hsapiens.1000genomes.hs37d5"
## [43] "BSgenome.Hsapiens.NCBI.GRCh38" "BSgenome.Hsapiens.UCSC.hg17"
## [45] "BSgenome.Hsapiens.UCSC.hg17.masked" "BSgenome.Hsapiens.UCSC.hg18"
## [47] "BSgenome.Hsapiens.UCSC.hg18.masked" "BSgenome.Hsapiens.UCSC.hg19"
## [49] "BSgenome.Hsapiens.UCSC.hg19.masked" "BSgenome.Hsapiens.UCSC.hg38"
## [51] "BSgenome.Hsapiens.UCSC.hg38.masked" "BSgenome.Mfascicularis.NCBI.5.0"
## [53] "BSgenome.Mfuro.UCSC.musFur1" "BSgenome.Mmulatta.UCSC.rheMac2"
## [55] "BSgenome.Mmulatta.UCSC.rheMac2.masked" "BSgenome.Mmulatta.UCSC.rheMac3"
## [57] "BSgenome.Mmulatta.UCSC.rheMac3.masked" "BSgenome.Mmulatta.UCSC.rheMac8"
## [59] "BSgenome.Mmusculus.UCSC.mm10" "BSgenome.Mmusculus.UCSC.mm10.masked"
## [61] "BSgenome.Mmusculus.UCSC.mm8" "BSgenome.Mmusculus.UCSC.mm8.masked"
## [63] "BSgenome.Mmusculus.UCSC.mm9" "BSgenome.Mmusculus.UCSC.mm9.masked"
## [65] "BSgenome.Osativa.MSU.MSU7" "BSgenome.Ptroglodytes.UCSC.panTro2"
## [67] "BSgenome.Ptroglodytes.UCSC.panTro2.masked" "BSgenome.Ptroglodytes.UCSC.panTro3"
## [69] "BSgenome.Ptroglodytes.UCSC.panTro3.masked" "BSgenome.Ptroglodytes.UCSC.panTro5"
## [71] "BSgenome.Rnorvegicus.UCSC.rn4" "BSgenome.Rnorvegicus.UCSC.rn4.masked"
## [73] "BSgenome.Rnorvegicus.UCSC.rn5" "BSgenome.Rnorvegicus.UCSC.rn5.masked"
## [75] "BSgenome.Rnorvegicus.UCSC.rn6" "BSgenome.Scerevisiae.UCSC.sacCer1"
## [77] "BSgenome.Scerevisiae.UCSC.sacCer2" "BSgenome.Scerevisiae.UCSC.sacCer3"
## [79] "BSgenome.Sscrofa.UCSC.susScr3" "BSgenome.Sscrofa.UCSC.susScr3.masked"
## [81] "BSgenome.Tgondii.ToxoDB.7.0" "BSgenome.Tguttata.UCSC.taeGut1"
## [83] "BSgenome.Tguttata.UCSC.taeGut1.masked" "BSgenome.Tguttata.UCSC.taeGut2"
## [85] "BSgenome.Vvinifera.URGI.IGGP12Xv0" "BSgenome.Vvinifera.URGI.IGGP12Xv2"
## [87] "BSgenome.Vvinifera.URGI.IGGP8X"
Here we examine two possibilities. In one case we have a mixture of rsIDs and our naming scheme that allows for arbitrary variants. Second we have a list of variants for the zebrafish Danio rerio that does not have a SNPlocs
package, but does have it’s genome present among the availible.genomes()
.
snps.bed.file <- system.file("extdata", "snps.bed", package = "motifbreakR")
# see the contents
read.table(snps.bed.file, header = FALSE)
## V1 V2 V3 V4 V5 V6
## 1 chr2 12581137 12581138 rs10170896 0 +
## 2 chr2 12594017 12594018 chr2:12594018:G:A 0 +
## 3 chr3 192388677 192388678 rs13068005 0 +
## 4 chr4 122361479 122361480 rs12644995 0 +
## 5 chr6 44503245 44503246 chr6:44503246:A:T 0 +
## 6 chr6 44503247 44503248 chr6:44503248:G:C 0 +
## 7 chr6 85232897 85232898 rs4510639 0 +
## 8 chr6 44501872 44501873 rs932680 0 +
Seeing as we have some SNPs listed by their rsIDs we can query those by including a SNPlocs object as an argument to snps.from.file
library(SNPlocs.Hsapiens.dbSNP142.GRCh37)
#import the BED file
snps.mb.frombed <- snps.from.file(file = snps.bed.file,
dbSNP = SNPlocs.Hsapiens.dbSNP142.GRCh37,
search.genome = BSgenome.Hsapiens.UCSC.hg19,
format = "bed")
snps.mb.frombed
## Warning message:
## In snps.from.file(file = snps.bed.file, dbSNP = SNPlocs.Hsapiens.dbSNP142.GRCh37:
## 7601289 was found as a match for chr2:12594018:G:A; using entry from dbSNP
## GRanges object with 8 ranges and 4 metadata columns:
## seqnames ranges strand | SNP_id alleles_as_ambig
## <Rle> <IRanges> <Rle> | <character> <DNAStringSet>
## rs10170896 chr2 [ 12581138, 12581138] + | rs10170896 R
## rs12644995 chr4 [122361480, 122361480] + | rs12644995 M
## rs13068005 chr3 [192388678, 192388678] + | rs13068005 R
## rs4510639 chr6 [ 85232898, 85232898] + | rs4510639 Y
## rs932680 chr6 [ 44501873, 44501873] + | rs932680 K
## 7601289 chr2 [ 12594018, 12594018] + | 7601289 R
## chr6:44503246:A:T chr6 [ 44503246, 44503246] + | chr6:44503246:A:T W
## chr6:44503248:G:C chr6 [ 44503248, 44503248] + | chr6:44503248:G:C S
## REF ALT
## <DNAStringSet> <DNAStringSet>
## rs10170896 G A
## rs12644995 C A
## rs13068005 G A
## rs4510639 C T
## rs932680 G T
## 7601289 G A
## chr6:44503246:A:T A T
## chr6:44503248:G:C G C
## -------
## seqinfo: 93 sequences (1 circular) from hg19 genome
We see also that one of our custom variants chr2:12594018:G:A
was actually already included in dbSNP, and was therefor annotated in the output as rs7601289
If our BED file includes no rsIDs, then we may omit the dbSNP
argument from the function. This example uses variants from Danio rerio
library(BSgenome.Drerio.UCSC.danRer7)
snps.bedfile.nors <- system.file("extdata", "danRer.bed", package = "motifbreakR")
read.table(snps.bedfile.nors, header = FALSE)
## V1 V2 V3 V4 V5 V6
## 1 chr18 13030932 13030933 chr18:13030933:G:A 0 +
## 2 chr18 30445455 30445456 chr18:30445456:T:A 0 +
## 3 chr5 22065023 22065024 chr5:22065024:A:T 0 +
## 4 chr14 36140941 36140942 chr14:36140942:T:A 0 +
## 5 chr3 16701576 16701577 chr3:16701577:T:A 0 +
## 6 chr14 20887995 20887996 chr14:20887996:G:A 0 +
## 7 chr7 25195449 25195450 chr7:25195450:G:T 0 +
## 8 chr2 59181852 59181853 chr2:59181853:A:G 0 +
## 9 chr3 58162674 58162675 chr3:58162675:C:T 0 +
## 10 chr22 18708824 18708825 chr22:18708825:T:A 0 +
snps.mb.frombed <- snps.from.file(file = snps.bedfile.nors,
search.genome = BSgenome.Drerio.UCSC.danRer7,
format = "bed")
snps.mb.frombed
## GRanges object with 10 ranges and 4 metadata columns:
## seqnames ranges strand | SNP_id alleles_as_ambig
## <Rle> <IRanges> <Rle> | <character> <DNAStringSet>
## chr18:13030933:G:A chr18 [13030933, 13030933] + | chr18:13030933:G:A R
## chr18:30445456:T:A chr18 [30445456, 30445456] + | chr18:30445456:T:A W
## chr5:22065024:A:T chr5 [22065024, 22065024] + | chr5:22065024:A:T W
## chr14:36140942:T:A chr14 [36140942, 36140942] + | chr14:36140942:T:A W
## chr3:16701577:T:A chr3 [16701577, 16701577] + | chr3:16701577:T:A W
## chr14:20887996:G:A chr14 [20887996, 20887996] + | chr14:20887996:G:A R
## chr7:25195450:G:T chr7 [25195450, 25195450] + | chr7:25195450:G:T K
## chr2:59181853:A:G chr2 [59181853, 59181853] + | chr2:59181853:A:G R
## chr3:58162675:C:T chr3 [58162675, 58162675] + | chr3:58162675:C:T Y
## chr22:18708825:T:A chr22 [18708825, 18708825] + | chr22:18708825:T:A W
## REF ALT
## <DNAStringSet> <DNAStringSet>
## chr18:13030933:G:A G A
## chr18:30445456:T:A T A
## chr5:22065024:A:T A T
## chr14:36140942:T:A T A
## chr3:16701577:T:A T A
## chr14:20887996:G:A G A
## chr7:25195450:G:T G T
## chr2:59181853:A:G A G
## chr3:58162675:C:T C T
## chr22:18708825:T:A T A
## -------
## seqinfo: 26 sequences (1 circular) from danRer7 genome
snps.from.file
also can take as input a vcf file with SNVs, by using format = "vcf"
.
Now that we have our data in the required format, we may continue to the task at hand, and determine which variants modify potential transcription factor binding. An important element of this task is identifying a set of transcription factor binding motifs that we wish to query. Fortunately MotifDb includes a large selection of motifs across multiple species that we can see here:
library(MotifDb)
MotifDb
## MotifDb object of length 8369
## | Created from downloaded public sources: 2013-Aug-30
## | 8369 position frequency matrices from 13 sources:
## | FlyFactorSurvey: 614
## | HOCOMOCOv10: 1066
## | HOMER: 332
## | JASPAR_2014: 592
## | JASPAR_CORE: 459
## | ScerTF: 196
## | SwissRegulon: 684
## | UniPROBE: 380
## | cispb_1.02: 874
## | hPDI: 437
## | jaspar2016: 1209
## | jolma2013: 843
## | stamlab: 683
## | 52 organism/s
## | Hsapiens: 4094
## | Mmusculus: 1251
## | Dmelanogaster: 1147
## | Scerevisiae: 876
## | Athaliana: 351
## | Celegans: 67
## | other: 583
## Scerevisiae-ScerTF-ABF2-badis
## Scerevisiae-ScerTF-CAT8-badis
## Scerevisiae-ScerTF-CST6-badis
## Scerevisiae-ScerTF-ECM23-badis
## Scerevisiae-ScerTF-EDS1-badis
## ...
## Mmusculus-UniPROBE-Zfp740.UP00022
## Mmusculus-UniPROBE-Zic1.UP00102
## Mmusculus-UniPROBE-Zic2.UP00057
## Mmusculus-UniPROBE-Zic3.UP00006
## Mmusculus-UniPROBE-Zscan4.UP00026
### Here we can see which organisms are availible under which sources
### in MotifDb
table(mcols(MotifDb)$organism, mcols(MotifDb)$dataSource)
FlyFactorSurvey | HOCOMOCOv10 | HOMER | JASPAR_2014 | JASPAR_CORE | ScerTF | SwissRegulon | UniPROBE | cispb_1.02 | hPDI | jaspar2016 | jolma2013 | stamlab | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Acarolinensis | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Amajus | 0 | 0 | 0 | 3 | 3 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 |
Anidulans | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 8 | 0 | 0 | 0 | 0 |
Apisum | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Aterreus | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Athaliana | 0 | 0 | 0 | 48 | 5 | 0 | 0 | 0 | 107 | 0 | 191 | 0 | 0 |
Bdistachyon | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 |
Celegans | 0 | 0 | 0 | 15 | 5 | 0 | 0 | 2 | 22 | 0 | 23 | 0 | 0 |
Cparvum | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 |
Csativa | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 |
Ddiscoideum | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 9 | 0 | 0 | 0 | 0 |
Dmelanogaster | 614 | 0 | 0 | 131 | 125 | 0 | 0 | 0 | 138 | 0 | 139 | 0 | 0 |
Drerio | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 |
Gaculeatus | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Gallus | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Ggallus | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 4 | 0 | 0 |
Hcapsulatum | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Hroretzi | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Hsapiens | 0 | 640 | 0 | 117 | 66 | 0 | 684 | 2 | 313 | 437 | 442 | 710 | 683 |
Hvulgare | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mdomestica | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mgallopavo | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mmurinus | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mmusculus | 0 | 426 | 0 | 66 | 47 | 0 | 0 | 282 | 132 | 0 | 165 | 133 | 0 |
Mtruncatula | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Ncrassa | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 15 | 0 | 0 | 0 | 0 |
Ngruberi | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Nhaematococca | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Nsp. | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Nsylvestris | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Nvectensis | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Ocuniculus | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Osativa | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 5 | 0 | 0 | 0 | 0 |
Otauri | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 |
Pcapensis | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Pfalciparum | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 26 | 0 | 0 | 0 | 0 |
Phybrida | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Ppatens | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 7 | 0 | 0 | 0 | 0 |
Ppygmaeus | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Psativum | 0 | 0 | 0 | 3 | 3 | 0 | 0 | 0 | 1 | 0 | 3 | 0 | 0 |
Ptetraurelia | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Rnorvegicus | 0 | 0 | 0 | 6 | 8 | 0 | 0 | 0 | 2 | 0 | 12 | 0 | 0 |
Rrattus | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 |
Scerevisiae | 0 | 0 | 0 | 177 | 177 | 196 | 0 | 91 | 60 | 0 | 175 | 0 | 0 |
Taestivam | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Tthermophila | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Vertebrata | 0 | 0 | 0 | 12 | 4 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Vvinifera | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Xlaevis | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 |
Xtropicalis | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Zmays | 0 | 0 | 0 | 6 | 6 | 0 | 0 | 0 | 1 | 0 | 6 | 0 | 0 |
We have leveraged the MotifList
introduced by MotifDb to include an additional set of motifs that have been gathered to this package:
data(motifbreakR_motif)
motifbreakR_motif
## MotifDb object of length 2817
## | Created from downloaded public sources: 2013-Aug-30
## | 2817 position frequency matrices from 4 sources:
## | ENCODE-motif: 2065
## | FactorBook: 79
## | HOCOMOCO: 426
## | HOMER: 247
## | 1 organism/s
## | Hsapiens: 2817
## Hsapiens-ENCODE-motifs-SIX5_disc1
## Hsapiens-ENCODE-motifs-MYC_disc1
## Hsapiens-ENCODE-motifs-SRF_disc1
## Hsapiens-ENCODE-motifs-AP1_disc1
## Hsapiens-ENCODE-motifs-SIX5_disc2
## ...
## Hsapiens-HOMER-yy1.motif
## Hsapiens-HOMER-zbtb33.motif
## Hsapiens-HOMER-zfx.motif
## Hsapiens-HOMER-znf263.motif
## Hsapiens-HOMER-znf711.motif
The different studies included in this data set may be called individually; for example:
data(hocomoco)
hocomoco
## MotifDb object of length 426
## | Created from downloaded public sources: 2013-Aug-30
## | 426 position frequency matrices from 1 source:
## | HOCOMOCO: 426
## | 1 organism/s
## | Hsapiens: 426
## Hsapiens-HOCOMOCO-AHR_si
## Hsapiens-HOCOMOCO-AIRE_f2
## Hsapiens-HOCOMOCO-ALX1_si
## Hsapiens-HOCOMOCO-ANDR_do
## Hsapiens-HOCOMOCO-AP2A_f2
## ...
## Hsapiens-HOCOMOCO-ZN333_f1
## Hsapiens-HOCOMOCO-ZN350_f1
## Hsapiens-HOCOMOCO-ZN384_f1
## Hsapiens-HOCOMOCO-ZN423_f1
## Hsapiens-HOCOMOCO-ZN589_f1
See ?motifbreakR_motif
for more information and citations.
Some of our data sets include a sequenceCount. These include FlyFactorSurvey
, hPDI
, JASPAR_2014
, JASPAR_CORE
, and jolma2013
from MotifDb and HOCOMOCO
from the set of motifbreakR_motif
. Using these we calculate a pseudocount to allow us to calculate the logarithms in the case where we have a 0
in a pwm. The calculation for incorporating pseudocounts is ppm <- (ppm * sequenceCount + 0.25)/(sequenceCount + 1)
. If the sequenceCount for a particular ppm is NA
we use 20 as a default sequenceCount.
Now that we have the three necessary components to run motifBreakR:
BSgenome
object for our organism, in this case BSgenome.Hsapiens.UCSC.hg19
MotifList
object containing our motifs, in this case hocomoco
,GRanges
object generated by snps.from.rsid
, in this case snps.mb
We get to the task of actually running the function motifbreakR()
.
We have several options that we may pass to the function, the main ones that will dictate how long the function will run with a given set of variants and motifs are the threshold
we pass and the method
we use to score.
Here we specify the snpList
, pwmList
, threshold
that we declare as the cutoff for reporting results, filterp
set to true declares that we are filtering by p-value, the method
, and bkg
the relative nucleotide frequency of A, C, G, and T.
results <- motifbreakR(snpList = snps.mb[1:5], filterp = TRUE,
pwmList = hocomoco,
threshold = 1e-4,
method = "ic",
bkg = c(A=0.25, C=0.25, G=0.25, T=0.25),
BPPARAM = BiocParallel::bpparam())
The results reveal which variants disrupt which motifs, and to which degree. If we want to examine a single variant, we can select one like this:
rs1006140 <- results[names(results) %in% "rs1006140"]
rs1006140
## GRanges object with 11 ranges and 18 metadata columns:
## seqnames ranges strand | REF ALT snpPos
## <Rle> <IRanges> <Rle> | <DNAStringSet> <DNAStringSet> <integer>
## rs1006140 chr19 [38778913, 38778923] - | A G 38778915
## rs1006140 chr19 [38778913, 38778923] - | A G 38778915
## rs1006140 chr19 [38778915, 38778925] - | A G 38778915
## rs1006140 chr19 [38778912, 38778924] - | A G 38778915
## rs1006140 chr19 [38778910, 38778920] - | A G 38778915
## rs1006140 chr19 [38778905, 38778926] - | A G 38778915
## rs1006140 chr19 [38778907, 38778925] - | A G 38778915
## rs1006140 chr19 [38778910, 38778920] - | A G 38778915
## rs1006140 chr19 [38778907, 38778923] - | A G 38778915
## rs1006140 chr19 [38778905, 38778924] - | A G 38778915
## rs1006140 chr19 [38778912, 38778928] - | A G 38778915
## motifPos geneSymbol dataSource providerName providerId
## <integer> <character> <character> <character> <character>
## rs1006140 9 EGR1 HOCOMOCO EGR1_f2 EGR1_HUMAN
## rs1006140 9 EGR2 HOCOMOCO EGR2_si EGR2_HUMAN
## rs1006140 11 EGR4 HOCOMOCO EGR4_f1 EGR4_HUMAN
## rs1006140 10 EPAS1 HOCOMOCO EPAS1_si EPAS1_HUMAN
## rs1006140 6 KLF1 HOCOMOCO KLF1_f1 KLF1_HUMAN
## rs1006140 12 RREB1 HOCOMOCO RREB1_si RREB1_HUMAN
## rs1006140 11 SP1 HOCOMOCO SP1_f2 SP1_HUMAN
## rs1006140 6 SP1 HOCOMOCO SP1_f1 SP1_HUMAN
## rs1006140 9 SP2 HOCOMOCO SP2_si SP2_HUMAN
## rs1006140 10 SP3 HOCOMOCO SP3_f1 SP3_HUMAN
## rs1006140 14 ZBTB4 HOCOMOCO ZBTB4_si ZBTB4_HUMAN
## seqMatch pctRef pctAlt scoreRef scoreAlt Refpvalue
## <character> <numeric> <numeric> <numeric> <numeric> <logical>
## rs1006140 ccAcccaccct 0.8725764 0.9198560 9.928427 10.466388 <NA>
## rs1006140 ccAcccaccct 0.9603338 0.9969814 10.042599 10.425838 <NA>
## rs1006140 Acccaccctcc 0.9044661 0.9155730 7.424109 7.515278 <NA>
## rs1006140 cccAcccaccctc 0.9183155 0.7987040 7.096860 6.172487 <NA>
## rs1006140 tccccAcccac 0.9621338 0.8087679 8.992025 7.558679 <NA>
## rs1006140 cccactccccAcccaccctcct 0.8256018 0.7162842 10.068413 8.735259 <NA>
## rs1006140 cactccccAcccaccctcc 0.9001300 0.9276826 10.092294 10.401215 <NA>
## rs1006140 tccccAcccac 0.9071577 0.9405964 9.556753 9.909024 <NA>
## rs1006140 cactccccAcccaccct 0.8503464 0.9050035 6.210741 6.609944 <NA>
## rs1006140 cccactccccAcccaccctc 0.9175228 0.9483830 8.966084 9.267651 <NA>
## rs1006140 cccAcccaccctcctgt 0.8030548 0.7641739 12.744241 12.127212 <NA>
## Altpvalue alleleRef alleleAlt effect
## <logical> <numeric> <numeric> <character>
## rs1006140 <NA> 0.1555090 0.7484361 weak
## rs1006140 <NA> 0.2333333 0.7166667 weak
## rs1006140 <NA> 0.1006126 0.5304745 weak
## rs1006140 <NA> 0.8695709 0.0000000 strong
## rs1006140 <NA> 1.0000000 0.0000000 strong
## rs1006140 <NA> 0.9355897 0.0000000 strong
## rs1006140 <NA> 0.1483650 0.6475825 weak
## rs1006140 <NA> 0.1064015 0.6440709 weak
## rs1006140 <NA> 0.0000000 0.6190476 weak
## rs1006140 <NA> 0.0873494 0.6275602 weak
## rs1006140 <NA> 0.7990441 0.2009559 weak
## -------
## seqinfo: 93 sequences (1 circular) from hg19 genome
Here we can see that SNP rs1006140 disrupts multiple motifs. We can then check what the pvalue for each allele is with regard to each motif, using calculatePvalue
.
rs1006140 <- calculatePvalue(rs1006140)
rs1006140
## GRanges object with 11 ranges and 18 metadata columns:
## seqnames ranges strand | REF ALT snpPos
## <Rle> <IRanges> <Rle> | <DNAStringSet> <DNAStringSet> <integer>
## rs1006140 chr19 [38778913, 38778923] - | A G 38778915
## rs1006140 chr19 [38778913, 38778923] - | A G 38778915
## rs1006140 chr19 [38778915, 38778925] - | A G 38778915
## rs1006140 chr19 [38778912, 38778924] - | A G 38778915
## rs1006140 chr19 [38778910, 38778920] - | A G 38778915
## rs1006140 chr19 [38778905, 38778926] - | A G 38778915
## rs1006140 chr19 [38778907, 38778925] - | A G 38778915
## rs1006140 chr19 [38778910, 38778920] - | A G 38778915
## rs1006140 chr19 [38778907, 38778923] - | A G 38778915
## rs1006140 chr19 [38778905, 38778924] - | A G 38778915
## rs1006140 chr19 [38778912, 38778928] - | A G 38778915
## motifPos geneSymbol dataSource providerName providerId
## <integer> <character> <character> <character> <character>
## rs1006140 9 EGR1 HOCOMOCO EGR1_f2 EGR1_HUMAN
## rs1006140 9 EGR2 HOCOMOCO EGR2_si EGR2_HUMAN
## rs1006140 11 EGR4 HOCOMOCO EGR4_f1 EGR4_HUMAN
## rs1006140 10 EPAS1 HOCOMOCO EPAS1_si EPAS1_HUMAN
## rs1006140 6 KLF1 HOCOMOCO KLF1_f1 KLF1_HUMAN
## rs1006140 12 RREB1 HOCOMOCO RREB1_si RREB1_HUMAN
## rs1006140 11 SP1 HOCOMOCO SP1_f2 SP1_HUMAN
## rs1006140 6 SP1 HOCOMOCO SP1_f1 SP1_HUMAN
## rs1006140 9 SP2 HOCOMOCO SP2_si SP2_HUMAN
## rs1006140 10 SP3 HOCOMOCO SP3_f1 SP3_HUMAN
## rs1006140 14 ZBTB4 HOCOMOCO ZBTB4_si ZBTB4_HUMAN
## seqMatch pctRef pctAlt scoreRef scoreAlt
## <character> <numeric> <numeric> <numeric> <numeric>
## rs1006140 ccAcccaccct 0.8725764 0.9198560 9.928427 10.466388
## rs1006140 ccAcccaccct 0.9603338 0.9969814 10.042599 10.425838
## rs1006140 Acccaccctcc 0.9044661 0.9155730 7.424109 7.515278
## rs1006140 cccAcccaccctc 0.9183155 0.7987040 7.096860 6.172487
## rs1006140 tccccAcccac 0.9621338 0.8087679 8.992025 7.558679
## rs1006140 cccactccccAcccaccctcct 0.8256018 0.7162842 10.068413 8.735259
## rs1006140 cactccccAcccaccctcc 0.9001300 0.9276826 10.092294 10.401215
## rs1006140 tccccAcccac 0.9071577 0.9405964 9.556753 9.909024
## rs1006140 cactccccAcccaccct 0.8503464 0.9050035 6.210741 6.609944
## rs1006140 cccactccccAcccaccctc 0.9175228 0.9483830 8.966084 9.267651
## rs1006140 cccAcccaccctcctgt 0.8030548 0.7641739 12.744241 12.127212
## Refpvalue Altpvalue alleleRef alleleAlt effect
## <numeric> <numeric> <numeric> <numeric> <character>
## rs1006140 1.416206e-04 3.981590e-05 0.1555090 0.7484361 weak
## rs1006140 2.884865e-05 2.145767e-06 0.2333333 0.7166667 weak
## rs1006140 6.914139e-05 5.602837e-05 0.1006126 0.5304745 weak
## rs1006140 1.028180e-05 7.119179e-04 0.8695709 0.0000000 strong
## rs1006140 3.242493e-05 1.083374e-03 1.0000000 0.0000000 strong
## rs1006140 1.835495e-05 8.753844e-04 0.9355897 0.0000000 strong
## rs1006140 2.507296e-05 6.102513e-06 0.1483650 0.6475825 weak
## rs1006140 4.696846e-05 1.239777e-05 0.1064015 0.6440709 weak
## rs1006140 4.675638e-04 3.932993e-05 0.0000000 0.6190476 weak
## rs1006140 1.953182e-05 2.195328e-06 0.0873494 0.6275602 weak
## rs1006140 1.217646e-05 5.199038e-05 0.7990441 0.2009559 weak
## -------
## seqinfo: 93 sequences (1 circular) from hg19 genome
And here we see that for each SNP we have at least one allele achieving a p-value below 1e-4 threshold that we required. The seqMatch
column shows what the reference genome sequence is at that location, with the variant position appearing in an uppercase letter. pctRef and pctAlt display the the score for the motif in the sequence as a percentage of the best score that motif could achieve on an ideal sequence. In other words \((scoreVariant-minscorePWM)/(maxscorePWM-minscorePWM)\). We can also see the absolute scores for our method in scoreRef and scoreAlt and thier respective p-values.
Important to note, is that motifbreakR
uses the BiocParallel parallel back-end, and one may modify what type of parallel evaluation it uses (or if it runs in parallel at all). Here we can see the versions available on the machine this vignette was compiled on.
BiocParallel::registered()
## $MulticoreParam
## class: MulticoreParam
## bpisup: FALSE; bpnworkers: 4; bptasks: 0; bpjobname: BPJOB
## bplog: FALSE; bpthreshold: INFO; bpstopOnError: TRUE
## bptimeout: 2592000; bpprogressbar: FALSE
## bpRNGseed:
## bplogdir: NA
## bpresultdir: NA
## cluster type: FORK
##
## $SnowParam
## class: SnowParam
## bpisup: FALSE; bpnworkers: 4; bptasks: 0; bpjobname: BPJOB
## bplog: FALSE; bpthreshold: INFO; bpstopOnError: TRUE
## bptimeout: 2592000; bpprogressbar: FALSE
## bpRNGseed:
## bplogdir: NA
## bpresultdir: NA
## cluster type: SOCK
##
## $SerialParam
## class: SerialParam
## bpisup: TRUE; bpnworkers: 1; bptasks: 0; bpjobname: BPJOB
## bplog: FALSE; bpthreshold: INFO; bpstopOnError: TRUE
## bptimeout: 2592000; bpprogressbar: FALSE
## bplogdir: NA
BiocParallel::bpparam()
## class: MulticoreParam
## bpisup: FALSE; bpnworkers: 4; bptasks: 0; bpjobname: BPJOB
## bplog: FALSE; bpthreshold: INFO; bpstopOnError: TRUE
## bptimeout: 2592000; bpprogressbar: FALSE
## bpRNGseed:
## bplogdir: NA
## bpresultdir: NA
## cluster type: FORK
By default motifbreakR
uses bpparam()
as an argument to BPPARAM
and will use all available cores on the machine on which it is running. However on Windows machines this reverts to using a serial evaluation model, so if you wish to run in parallel on a Windows machine consider using a different parameter shown in BiocParallel::registered()
such as SnowParam
passing BPPARAM = SnowParam()
.
Now that we have our results, we can visualize them with the function plotMB
. Lets take a look at rs1006140.
plotMB(results = results, rsid = "rs1006140", effect = "strong")
motifBreakR works with position probability matrices (PPM). PPM are derived as the fractional occurrence of nucleotides A,C,G, and T at each position of a position frequency matrix (PFM). PFM are simply the tally of each nucleotide at each position across a set of aligned sequences. With a PPM, one can generate probabilities based on the genome, or more practically, create any number of position specific scoring matrices (PSSM) based on the principle that the PPM contains information about the likelihood of observing a particular nucleotide at a particular position of a true transcription factor binding site. What follows is a discussion of the three different algorithms that may be employed in calls to the motifBreakR function via the method
argument.
Suppose we have a frequency matrix \(M\) of width \(n\) (i.e. a PPM as described above). Furthermore, we have a sequence \(s\) also of length \(n\), such that \(s_{i} \in \{ A,T,C,G \}, i = 1,\ldots n\). Each column of \(M\) contains the frequencies of each letter in each position.
Commonly in the literature sequences are scored as the sum of log probabilities:
\[F( s,M ) = \sum_{i = 1}^{n}{\log( \frac{M_{s_{i},i}}{b_{s_{i}}} )}\]
where \(b_{s_{i}}\) is the background frequency of letter \(s_{i}\) in the genome of interest. This method can be specified by the user as method='log'
.
As an alternative to this method, we introduced a scoring method to directly weight the score by the importance of the position within the match sequence. This method of weighting is accessed by specifying method='default'
(weighted sum). A general representation of this scoring method is given by:
\[F( s,M ) = p( s ) \cdot \omega_{M}\]
where \(p_{s}\) is the scoring vector derived from sequence \(s\) and matrix \(M\), and \(w_{M}\) is a weight vector derived from \(M\). First, we compute the scoring vector of position scores \(p\):
\[p( s ) = ( M_{s_{i},i} ) \textrm{ where } \frac{i = 1,\ldots n}{s_{i} \in \{ A,C,G,T \}}\]
and second, for each \(M\) a constant vector of weights \(\omega_{M} = ( \omega_{1},\omega_{2},\ldots,\omega_{n} )\).
There are two methods for producing \(\omega_{M}\). The first, which we call weighted sum, is the difference in the probabilities for the two letters of the polymorphism (or variant), i.e. \(\Delta p_{s_{i}}\), or the difference of the maximum and minimum values for each column of \(M\):
\[\omega_{i} = \max \{ M_{i} \} - \min \{ M_{i} \}\textrm{ where }i = 1,\ldots n\]
The second variation of this theme is to weight by relative entropy. Thus the relative entropy weight for each column \(i\) of the matrix is given by:
\[\omega_{i} = \sum_{j \in \{ A,C,G,T \}}^{}{M_{j,i}\log_2( \frac{M_{j,i}}{b_{i}} )}\textrm{ where }i = 1,\ldots n\]
where \(b_{i}\) is again the background frequency of the letter \(i\).
Thus, there are 3 possible algorithms to apply via the method
argument. The first is the standard summation of log probabilities (method='log'
). The second and third are the weighted sum and information content methods (method='default'
and method='ic'
) specified by equations for Weighted Sum and Relative Entropy, respectively. motifBreakR assumes a uniform background nucleotide distribution (\(b\)) in equations 4.1 and 4.5 unless otherwise specified by the user. Since we are primarily interested in the difference between alleles, background frequency is not a major factor, although it can change the results. Additionally, inclusion of background frequency introduces potential bias when collections of motifs are employed, since motifs are themselves unbalanced with respect to nucleotide composition. With these cautions in mind, users may override the uniform distribution if so desired. For all three methods, motifBreakR scores and reports the reference and alternate alleles of the sequence (\(F( s_{\textrm{REF}},M )\) and \(F( s_{\textrm{ALT}},M )\)), and provides the matrix scores \(p_{s_{\textrm{REF}}}\) and \(p_{s_{\textrm{ALT}}}\) of the SNP (or variant). The scores are scaled as a fraction of scoring range 0-1 of the motif matrix, \(M\). If either of \(F( s_{\textrm{REF}},M )\) and \(F( s_{\textrm{ALT}},M )\) is greater than a user-specified threshold (default value of 0.85) the SNP is reported. By default motifBreakR does not display neutral effects, (\(\Delta p_{i} < 0.4\)) but this behaviour can be overridden.
Additionally, now, with the use of TFMPvalue, we may filter by p-value of the match. This is unfortunately a two step process. First, by invoking filterp=TRUE
and setting a threshold at a desired p-value e.g 1e-4, we perform a rough filter on the results by rounding all values in the PWM to two decimal place, and calculating a scoring threshold based upon that. The second step is to use the function calculatePvalue()
on a selection of results which will change the Refpvalue
and Altpvalue
columns in the output from NA
to the p-value calculated by TFMsc2pv
. This can be (although not always) a very memory and time intensive process if the algorithm doesn’t converge rapidly.
sessionInfo()
## R version 3.4.2 (2017-09-28)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 16.04.3 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.6-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.6-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=en_US.UTF-8
## [4] LC_COLLATE=C LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C LC_ADDRESS=C
## [10] LC_TELEPHONE=C LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] stats4 parallel grid stats graphics grDevices utils datasets methods
## [10] base
##
## other attached packages:
## [1] BSgenome.Drerio.UCSC.danRer7_1.4.0 BSgenome.Hsapiens.UCSC.hg19_1.4.0
## [3] SNPlocs.Hsapiens.dbSNP142.GRCh37_0.99.5 BSgenome_1.46.0
## [5] rtracklayer_1.38.0 GenomicRanges_1.30.0
## [7] GenomeInfoDb_1.14.0 motifbreakR_1.8.0
## [9] MotifDb_1.20.0 Biostrings_2.46.0
## [11] XVector_0.18.0 IRanges_2.12.0
## [13] S4Vectors_0.16.0 BiocGenerics_0.24.0
## [15] BiocStyle_2.6.0
##
## loaded via a namespace (and not attached):
## [1] ProtGenerics_1.10.0 bitops_1.0-6 matrixStats_0.52.2
## [4] bit64_0.9-7 RColorBrewer_1.1-2 progress_1.1.2
## [7] httr_1.3.1 rprojroot_1.2 tools_3.4.2
## [10] backports_1.1.1 R6_2.2.2 rGADEM_2.26.0
## [13] rpart_4.1-11 Hmisc_4.0-3 seqLogo_1.44.0
## [16] DBI_0.7 splitstackshape_1.4.2 lazyeval_0.2.1
## [19] Gviz_1.22.0 colorspace_1.3-2 ade4_1.7-8
## [22] nnet_7.3-12 motifStack_1.22.0 gridExtra_2.3
## [25] prettyunits_1.0.2 RMySQL_0.10.13 curl_3.0
## [28] bit_1.1-12 compiler_3.4.2 Biobase_2.38.0
## [31] htmlTable_1.9 DelayedArray_0.4.0 grImport_0.9-0
## [34] scales_0.5.0 checkmate_1.8.5 stringr_1.2.0
## [37] digest_0.6.12 Rsamtools_1.30.0 foreign_0.8-69
## [40] rmarkdown_1.6 base64enc_0.1-3 dichromat_2.0-0
## [43] htmltools_0.3.6 highr_0.6 ensembldb_2.2.0
## [46] htmlwidgets_0.9 rlang_0.1.2 RSQLite_2.0
## [49] BiocInstaller_1.28.0 shiny_1.0.5 BiocParallel_1.12.0
## [52] acepack_1.4.1 VariantAnnotation_1.24.0 RCurl_1.95-4.8
## [55] magrittr_1.5 GenomeInfoDbData_0.99.1 Formula_1.2-2
## [58] Matrix_1.2-11 Rcpp_0.12.13 munsell_0.4.3
## [61] stringi_1.1.5 yaml_2.1.14 SummarizedExperiment_1.8.0
## [64] zlibbioc_1.24.0 plyr_1.8.4 AnnotationHub_2.10.0
## [67] blob_1.1.0 lattice_0.20-35 splines_3.4.2
## [70] GenomicFeatures_1.30.0 knitr_1.17 MotIV_1.34.0
## [73] codetools_0.2-15 biomaRt_2.34.0 TFMPvalue_0.0.6
## [76] XML_3.98-1.9 evaluate_0.10.1 biovizBase_1.26.0
## [79] latticeExtra_0.6-28 data.table_1.10.4-3 httpuv_1.3.5
## [82] gtable_0.2.0 assertthat_0.2.0 ggplot2_2.2.1
## [85] mime_0.5 xtable_1.8-2 AnnotationFilter_1.2.0
## [88] survival_2.41-3 tibble_1.3.4 GenomicAlignments_1.14.0
## [91] AnnotationDbi_1.40.0 memoise_1.1.0 cluster_2.0.6
## [94] interactiveDisplayBase_1.16.0
Website: encode-motifs Paper: Systematic discovery and characterization of regulatory motifs in ENCODE TF binding experiments↩
Website: Factorbook Paper: Sequence features and chromatin structure around the genomic regions bound by 119 human transcription factors↩
Website: HOCOMOCO Paper: HOCOMOCO: a comprehensive collection of human transcription factor binding sites models↩
Website: Homer Paper: http://www.sciencedirect.com/science/article/pii/S1097276510003667↩