Literature DB >> 18286180

Asap: a framework for over-representation statistics for transcription factor binding sites.

Troels T Marstrand1, Jes Frellsen, Ida Moltke, Martin Thiim, Eivind Valen, Dorota Retelska, Anders Krogh.   

Abstract

BACKGROUND: In studies of gene regulation the efficient computational detection of over-represented transcription factor binding sites is an increasingly important aspect. Several published methods can be used for testing whether a set of hypothesised co-regulated genes share a common regulatory regime based on the occurrence of the modelled transcription factor binding sites. However there is little or no information available for guiding the end users choice of method. Furthermore it would be necessary to obtain several different software programs from various sources to make a well-founded choice.
METHODOLOGY: We introduce a software package, Asap, for fast searching with position weight matrices that include several standard methods for assessing over-representation. We have compared the ability of these methods to detect over-represented transcription factor binding sites in artificial promoter sequences. Controlling all aspects of our input data we are able to identify the optimal statistics across multiple threshold values and for sequence sets containing different distributions of transcription factor binding sites.
CONCLUSIONS: We show that our implementation is significantly faster than more naïve scanning algorithms when searching with many weight matrices in large sequence sets. When comparing the various statistics, we show that those based on binomial over-representation and Fisher's exact test performs almost equally good and better than the others. An online server is available at http://servers.binf.ku.dk/asap/.

Entities:  

Mesh:

Substances:

Year:  2008        PMID: 18286180      PMCID: PMC2229843          DOI: 10.1371/journal.pone.0001623

Source DB:  PubMed          Journal:  PLoS One        ISSN: 1932-6203            Impact factor:   3.240


Introduction

Efficient identification of transcription factor binding sites is a crucial initial step in the study of gene regulation. We are often interested in identifying over-represented transcription factor binding sites (TFBSs) in some set of hypothesised co-regulated genes as this indicates that the set share a common regulatory mechanism. Modelling the binding of transacting proteins to cis-regulatory sequences by computational approaches is becoming increasingly important in hypothesis testing and generation. The binding preference of a known transcription factor can be described by the sequences to which it binds. Aligning the sequences and counting the nucleotides at each position in the alignment provides a count matrix similar to those found in databases as TRANSFAC [1] and JASPAR [2]. Log-transforming this count matrix, taking into account the background nucleotide distribution of the genomic region of interest, provides the position weight matrix (PWM). Various algorithms can then be used to scan a set of sequence with this PWM to identify likely binding sites. However, due to the short and degenerate nature of TFBSs a typical PWM will detect a hit every 500–5000 base-pair depending on parameter settings [3]; leading to a genome-wide number of predictions that are much higher than estimates from experimental data [4].Two different approaches are frequently employed to decrease the large number of presumably false positives. One is phylogenetic footprinting where conservation of the detected sites in orthologous promoters are used as evidence for functionality, see the review in [5] and examples of tools in [6]–[8]. A disadvantage of this method is its inability to detect species-specific regulatory mechanisms and the sensitivity to the alignment of the regulatory regions. The other approach is to ignore the mapping of the specific binding sites and calculate an over-representation statistic for the transcription factor to assess whether it is the likely cause of the observed co-regulation. Here we focus on a handful of methods for assessing over-representation. The assumption behind an over-representation statistics is that functional TFBSs will be over-represented in the set of co-regulated genes as compared to a background set [9] (by the term co-regulated we refer to a set of genes hypothesized to be co-regulated either based on expression data or some other information). Several methods exist for assessing the significance of over-representation [10]–[13], but most of these methods are implemented in distinct tools for promoter analysis making a comparison between the different statistics cumbersome. However, these methods all rely on some comparison of the distribution of TFBSs, modelled by PWMs, between two sequence sets and they can therefore be implemented in a common framework. We here present such an implementation: A fast search algorithm coupled with an easily extendable framework for calculating the different test-statistics. When interested in finding a common regulatory regime for a set of co-regulated genes, the main objective is to find the representative regulators, whereas the mapping of their actual binding sites in the DNA sequences as a secondary objective that may require different statistics. Our goal is to systematically test various parameters on diverse but controlled sequence sets in order to establish a guideline for conducting optimal promoter analysis. In doing so, we focus on the hypothesis testing capability of the statistics rather than their ability to map the location of the actual TFBSs. An important caveat of this entire framework is that even if a TFBS is significantly over-represented it does not imply biological function directly as several epigenetic features may further modulate the transcriptional events [14]–[16].

Materials and Methods

Computational identification of transcription factor binding sites consists of two parts: scoring and assessment. We will deal with each in turn.

Scoring

Scoring is done using a PWM representing a specific TFBS. To take into account the base composition of the promoters a background model from a relevant set of sequences is estimated. The background model is usually a Markov model representing either the relative frequencies of the nucleotides A, C, G, and T (zeroth order); the 16 di-nucleotides (first order) or any word-length of nucleotides (n-th order). Often there is too little information in the original alignments to estimate anything but a zeroth order model for the transcription factor binding site, however it can be combined with a higher order background model to take into account dependencies in the nucleotide composition. Effectively the PWM is the log ratio of the conditional pattern probabilities and conditional background probabilities (see supplementary material, text S1) Having defined the PWM it becomes a matter of finding all sub-sequences of length W (the width of the PWM) scoring above a given threshold. These sub-sequences are considered the predicted binding sites for the transcription factor in question. If the sequence sets (positive and background set) are large, or if we wish to search with several PWMs, this can be a computationally taxing problem. We have implemented a C library using a data structure called enhanced suffix arrays (ESA). Using a modified version of the ESAsearch algorithm, introduced by Beckstette et al. [17], we are able to solve the scoring problem with a speedup of as much as a factor 1000 compared to a naïve implementation (see supplementary material, text S1). The primary benefit of ESAsearch is that whenever two or more W-sub-sequences share a prefix the score for that prefix is only calculated once. Additionally, a look-ahead principle is used: The scoring of any given sub-sequence is stopped if the intermediate score of any of its prefixes plus the highest possible score for the rest of the sub-sequence is below the threshold. Combining these two principles are especially advantageous; when the scoring of a sub-sequence is stopped due to the look-ahead principle, ESAsearch also discards all other sub-sequences that share the prefix that led to the stop. Further speedup is achieved by utilizing the fact that TFBSs, and thus PWMs, are short. We can use this to impose an upper bound on the prefixes (currently set to 50) which efficiently speeds up the sorting when building the ESA by a factor two compared to the sophisticated lcp algorithm by T. Kasai et al. [18] (see supplementary material, text S1). A disadvantage of using an ESA is that the data structure uses nine times as much memory as the size of the input sequences. Since the building time is linear in the size of the input sequences, it is only advantageous when searching the sequence set with multiple PWMs (see table 1 and supplementary material, text S1, for speed comparisons).
Table 1

Speed comparison to naïve search

File sizeOur ESAsearchNaïveSearches
36 MB 0.202.4415
8 MB 0.131.2214
4 MB 0.040.2712
1 MB 0.010.078

Search time for our implementation compared to a naïve search. The final column indicates the number of PWMs to search with to ‘break-even’ with the naïve search taking into account the building time of the enhanced suffix array

Search time for our implementation compared to a naïve search. The final column indicates the number of PWMs to search with to ‘break-even’ with the naïve search taking into account the building time of the enhanced suffix array

Assessment

The strength of over-representation can be expressed by a test-statistic. Here we have implemented and rigorously tested the performance of several published methods that are used within the field: The binomial over-representation used by TOUCAN [12], the Fisher's exact test and z-score used by oPOSSUM [10], [11], the area under the ROC used by Clarke et al [10], the log-ranking employed by PAP [13], and finally the Wilcoxon rank sum test. We include the Wilcoxon rank sum as it represents a formalized statistic in the same genre as those employed by [10] and [13]. To the best of our knowledge no current tool uses Wilcoxon rank sum test for assessment of over-represented TFBSs. As the statistics are sensitive to the sequence lengths we concatenate the background sequences after searching for matches and then partition the concatenated sequences into sequences of equal length – the mean length of the positive sequences. By concatenating after all instances have been found, we avoid forming ‘new’ words in the boundaries of the sequences. Finally our statistics module is interfaced to R [19] using Rpy. This enables the user to take advantage of the rich statistical framework provided by R and easily extend the currently implemented methods.

Results

We test all implemented statistics on an artificial data set, somewhat similar to Tompa et al. [20], in order to control all variables. Originally these methods where tested on diverse data sets and a direct comparison based on the original literature is therefore impossible. However, we do acknowledge that our artificial data set may indeed promote some statistics compared to others. E.g. the ranking statistics, area under ROC and ln-rank, both rely on a sum of PWM scores within each sequence. Thus these statistics would benefit from several TFBSs in each positive sequence, and here we only place one. As we are aware that the artificial data set may not fully represent the complex structure of a true biological data set we also assess the different statistics on a ChIP data set from Wei et al. [21].

Data

Our data set consists of 117 positive sequence sets from dbTSS [22], each with a total 100 sequences. Each sequence in a specific sequence set have a probability of having an embedded site from a specific JASPAR CORE 2008 PWM [23]. The probability is 100% for the performance test on the order of the background model, 50% for the tests of statistics across multiple thresholds and finally between 10–90% in the dilution test. Our background set consists of 1000 sequences also from dbTSS. For testing the speed of the implemented search algorithm we choose a set of ∼31000 dbTSS sequences. The data from Wei et al. [21] consists of DNA fragments from a p53 ChIP experiment that are converted into pair-ended di-tags (PETs) and mapped back to the human genome. Here we use all 323 PET tag clusters with 3 or more counts as our positive set.

Speed test

To test the speed of our implemented algorithm we partition the master file (the 31000 sequences) into several smaller ones. Using 50 randomly chosen PWMs with a threshold giving an expected match every 10000 base pair we compare our implementation to a naïve search. The results are given in table 1. The last column indicates the number of PWMs one would need to search with in order to ‘break-even’ with the naïve method when taking into account the building time of the enhanced suffix array, (see supplementary material, text S1, for a more detailed comparison). All tests were done on a 2.4 GHz Intel Pentium 4 processor with 1.5 GB of memory running Linux. We used the sum of user and sys times as reported by the Linux time command.

Background model order

It has been shown in [24] that a high-order Markov chain is a better background model than the standard zeroth order. To find the appropriate order we scan all data sets with the respective PWM and record the number of true instances found in the positive sequences (all sequences have an embedded site) and the mean number of instances found in the background set. Figure 1 shows a small increase in performance by order, and we decided to continue comparing order 0 and order 3.
Figure 1

Performance of PWMs based on background model.

Average number of false hits in the background sequences per hit in the positive sequences across 117 JASPAR CORE PWMs.

Performance of PWMs based on background model.

Average number of false hits in the background sequences per hit in the positive sequences across 117 JASPAR CORE PWMs. Based on this we test all statistics with a sequence set with 50% chance of an embedded site with both zeroth order and third order background models. For each positive data set we calculate all over-representation statistics for all matrices and record if the true matrix was found (the one corresponding to the embedded sites) and the number of possibly false matrices, that is, other matrices also showing significant over-representation in the set. Thus we have an overall number of 117 true predictions and (117×138)–117 = 16029 possible false predictions. We use a p-value threshold of 0.05, a z-score threshold of 3, an area under the ROC above 0.5, and ln-rank score above 2 as suggested by the original papers. We do not correct for multiple testing. Results are summarized in table 2.
Table 2

Comparison of over-representation statistics based on background model.

Order 0BinomialZ-scoreFisher'sROCWilcoxonLn-rank
TRUE996795542153
FALSE104640735391038628712326
Ppv.0.08650.0160.1500.0050.0070.022
Sens.0.8460.5730.8120.4620.1800.453
FPR0.0650.2540.0340.6480.1800.145
Spec.0.9350.7460.9660.3520.8210.855
Order 3 Binomial Z-score Fisher's ROC Wilcoxon Ln-rank
TRUE925987592648
FALSE152238781219538757852035
Ppv.0.0570.0150.0670.0110.0040.023
Sens.0.7860.5040.7440.5040.2220.410
FPR0.0950.2420.0760.3360.3610.127
Spec.0.9050.7580.9240.6640.6390.873

Performance of the different over-representation statistics based on a zeroth and third order background model. The PWM threshold is 0.9 of the scoring range.

Performance of the different over-representation statistics based on a zeroth and third order background model. The PWM threshold is 0.9 of the scoring range. The trend (previously observed in [24]) of higher background giving higher performance is not present in our test. In fact only the poorly performing statistics seems to borrow strength from the higher order background, while the better performing statistics are hurt by the increase in background model. Thus we select zeroth order background models to further boost the better performing statistics. Also when testing across a series of thresholds (0.9, 0.8, 0.7, and 0.6) of each PWM specific scoring range ((max−min)*threshold+min) it is clear that the optimal statistic is the Fishers exact test, data not shown. Finally, in the dilution test it is evident that this statistic is also relatively robust with respect to the number of sites in the positive set never dropping below a sensitivity of 50% as shown in table 3.
Table 3

Dilution test using Fisher's exact test.

Prob.10%20%30%40%50%60%70%80%90%
TRUE61758587959797102102
FALSE395433465492539573604652681
Sens.0.5210.6410.7260.7440.8120.8290.8290.8720.872
Spec.0.9750.9730.9710.9690.9660.9640.9620.9600.958

Sensitivity and specificity measures based on the probability of embedded JASPAR sites across all 138 PWMs and 117 sequence sets, no correction for multiple testing.

Sensitivity and specificity measures based on the probability of embedded JASPAR sites across all 138 PWMs and 117 sequence sets, no correction for multiple testing.

ChIP data

We partition the data from Wei et al. [21] into four groups based on the number of counts in the PET tag cluster. The first data set consists of all sequences with six counts, the next of all sequences with five or more counts, etc until all 323 sequences with 3 or more counts are included. Thus we successively weaken the p53 signal. For each of the four data sets we search with all the JASPAR 2008 CORE PWMs using a loose threshold of 0.8 of the maximum scoring range. We then rank the significance values from each statistic and record the rank of the PWM for p53, see table 4. As other transcription factors may be present in the positive set our major concern is the statistics ability to specify p53 as being the most significantly over-represented feature. The results correspond with our results obtained on the artificial data sets: the best performing statistics is the binomial over-representation and Fisher's exact test.
Table 4

Rank of the p53 PWM on ChIP data

PET countBinomialZ-scoreFisher'sROCWilcoxonLn-rank
6 1* 1* 1* 9425* 1*
5 1* 1* 1* 79971*
4 1* 1* 1* 73.51371*
3 1* 628* 1* 36.51*

The rank of the PWM for p53 using the different statistics, * indicates that the significance value provided is significant at the 0.05 level.

The rank of the PWM for p53 using the different statistics, * indicates that the significance value provided is significant at the 0.05 level.

Discussion

The apparently contradictive result that the zeroth order PWM performs better than the third order highlights some of the problems of over-representation statistics, or more generally PWM scoring. Confounding factors are numerous and include: the threshold value, PWM to PWM similarity, and the information content of the PWM. Firstly, calculating the threshold of the PWM based on the scoring range of the model it is clear that including a higher order background model will effectively lead to an altered scoring range and thus affect the absolute threshold value. In our specific case this affects the performance differences of over-representation statistics between the zeroth order and third order PWMs. Secondly, since transcription factors of similar function sometimes bind to similar sequence patterns they are not independent. In other words, if PWM A is very similar to PWM B both of them will likely be deemed significantly over-represented in the sequences with the embedded A sites and vice versa. Thirdly comparing performance across a set of different PWMs all with different information content is difficult. Obviously different information content leads to different binding affinities and how to interpret the p-values derived from low and high information content PWMs is not trivial. All these confounding effects influence the final value calculated by the over-representation statistics and influence our ability to compare the values obtained by different PWMs. In reality the problem of promoter analysis is further complicated by different promoter architectures [25], and therefore sub-partitioning the sequences and background models as suggested by Down and Hubbard [26] would be justified. However, this further limits the ability to compare the resulting over-representation without expert biological knowledge. Furthermore we have, in the current work, not considered the effect of overlapping and/or palindromic sites. Such sites will clearly affect the resulting test-statistics. However, further analyses are required to quantify the effects and find solutions to handle such sites intelligently. Despite the severe difficulties related to promoter analysis in mammalian genomes, our analysis shows that over-represented transcription factors are detectable using current methods even for low sites to sequences ratios. As for the program package it can be easily extended to include various other types of genomic data. An obvious extension would be to include conservation tracks and other data tracks from the UCSC genome browser in a coherent manner. Here we focus on the usage of the program package within the field of promoter analysis, however, all patterns that can be represented by a PWM can potentially benefit from our framework. Our current implementation provides the community with a basic framework for fast searching with PWMs and integrated analyses of the results either through the current implemented methods or by use of the rich statistical framework provided by R. Finally our framework can be use directly from our web interface at: http://servers.binf.ku.dk/asap/ Higher order background models and detailed speed comparison. (0.07 MB PDF) Click here for additional data file.
  23 in total

Review 1.  Chromatin insulators and boundaries: effects on transcription and nuclear organization.

Authors:  T I Gerasimova; V G Corces
Journal:  Annu Rev Genet       Date:  2001       Impact factor: 16.830

2.  DBTSS: DataBase of human Transcriptional Start Sites and full-length cDNAs.

Authors:  Yutaka Suzuki; Riu Yamashita; Kenta Nakai; Sumio Sugano
Journal:  Nucleic Acids Res       Date:  2002-01-01       Impact factor: 16.971

Review 3.  A genomic regulatory network for development.

Authors:  Eric H Davidson; Jonathan P Rast; Paola Oliveri; Andrew Ransick; Cristina Calestani; Chiou-Hwa Yuh; Takuya Minokawa; Gabriele Amore; Veronica Hinman; Cesar Arenas-Mena; Ochan Otim; C Titus Brown; Carolina B Livi; Pei Yun Lee; Roger Revilla; Alistair G Rust; Zheng jun Pan; Maria J Schilstra; Peter J C Clarke; Maria I Arnone; Lee Rowen; R Andrew Cameron; David R McClay; Leroy Hood; Hamid Bolouri
Journal:  Science       Date:  2002-03-01       Impact factor: 47.728

4.  rVista for comparative sequence-based discovery of functional transcription factor binding sites.

Authors:  Gabriela G Loots; Ivan Ovcharenko; Lior Pachter; Inna Dubchak; Edward M Rubin
Journal:  Genome Res       Date:  2002-05       Impact factor: 9.043

Review 5.  Comparative genomics: genome-wide analysis in metazoan eukaryotes.

Authors:  Abel Ureta-Vidal; Laurence Ettwiller; Ewan Birney
Journal:  Nat Rev Genet       Date:  2003-04       Impact factor: 53.242

6.  JASPAR: an open-access database for eukaryotic transcription factor binding profiles.

Authors:  Albin Sandelin; Wynand Alkema; Pär Engström; Wyeth W Wasserman; Boris Lenhard
Journal:  Nucleic Acids Res       Date:  2004-01-01       Impact factor: 16.971

7.  Rank order metrics for quantifying the association of sequence features with gene regulation.

Authors:  Neil D Clarke; Joshua A Granek
Journal:  Bioinformatics       Date:  2003-01-22       Impact factor: 6.937

8.  Unbiased mapping of transcription factor binding sites along human chromosomes 21 and 22 points to widespread regulation of noncoding RNAs.

Authors:  Simon Cawley; Stefan Bekiranov; Huck H Ng; Philipp Kapranov; Edward A Sekinger; Dione Kampa; Antonio Piccolboni; Victor Sementchenko; Jill Cheng; Alan J Williams; Raymond Wheeler; Brant Wong; Jorg Drenkow; Mark Yamanaka; Sandeep Patel; Shane Brubaker; Hari Tammana; Gregg Helt; Kevin Struhl; Thomas R Gingeras
Journal:  Cell       Date:  2004-02-20       Impact factor: 41.582

9.  Toucan: deciphering the cis-regulatory logic of coregulated genes.

Authors:  Stein Aerts; Gert Thijs; Bert Coessens; Mik Staes; Yves Moreau; Bart De Moor
Journal:  Nucleic Acids Res       Date:  2003-03-15       Impact factor: 16.971

10.  NestedMICA: sensitive inference of over-represented motifs in nucleic acid sequence.

Authors:  Thomas A Down; Tim J P Hubbard
Journal:  Nucleic Acids Res       Date:  2005-03-10       Impact factor: 16.971

View more
  27 in total

1.  The RNA exosome shapes the expression of key protein-coding genes.

Authors:  Mengjun Wu; Evdoxia Karadoulama; Marta Lloret-Llinares; Jerome Olivier Rouviere; Christian Skov Vaagensø; Martin Moravec; Bingnan Li; Jingwen Wang; Guifen Wu; Maria Gockert; Vicent Pelechano; Torben Heick Jensen; Albin Sandelin
Journal:  Nucleic Acids Res       Date:  2020-09-04       Impact factor: 16.971

2.  The genome landscape of ERalpha- and ERbeta-binding DNA regions.

Authors:  Yawen Liu; Hui Gao; Troels Torben Marstrand; Anders Ström; Eivind Valen; Albin Sandelin; Jan-Ake Gustafsson; Karin Dahlman-Wright
Journal:  Proc Natl Acad Sci U S A       Date:  2008-02-13       Impact factor: 11.205

3.  Genome-wide detection and analysis of hippocampus core promoters using DeepCAGE.

Authors:  Eivind Valen; Giovanni Pascarella; Alistair Chalk; Norihiro Maeda; Miki Kojima; Chika Kawazu; Mitsuyoshi Murata; Hiromi Nishiyori; Dejan Lazarevic; Dario Motti; Troels Torben Marstrand; Man-Hung Eric Tang; Xiaobei Zhao; Anders Krogh; Ole Winther; Takahiro Arakawa; Jun Kawai; Christine Wells; Carsten Daub; Matthias Harbers; Yoshihide Hayashizaki; Stefano Gustincich; Albin Sandelin; Piero Carninci
Journal:  Genome Res       Date:  2008-12-11       Impact factor: 9.043

4.  Polyadenylation site-induced decay of upstream transcripts enforces promoter directionality.

Authors:  Evgenia Ntini; Aino I Järvelin; Jette Bornholdt; Yun Chen; Mette Boyd; Mette Jørgensen; Robin Andersson; Ilka Hoof; Aleks Schein; Peter R Andersen; Pia K Andersen; Pascal Preker; Eivind Valen; Xiaobei Zhao; Vicent Pelechano; Lars M Steinmetz; Albin Sandelin; Torben Heick Jensen
Journal:  Nat Struct Mol Biol       Date:  2013-07-14       Impact factor: 15.369

5.  Propagation of adipogenic signals through an epigenomic transition state.

Authors:  David J Steger; Gregory R Grant; Michael Schupp; Takuya Tomaru; Martina I Lefterova; Jonathan Schug; Elisabetta Manduchi; Christian J Stoeckert; Mitchell A Lazar
Journal:  Genes Dev       Date:  2010-05-15       Impact factor: 11.361

6.  3-methylcholanthrene induces differential recruitment of aryl hydrocarbon receptor to human promoters.

Authors:  Andrea Pansoy; Shaimaa Ahmed; Eivind Valen; Albin Sandelin; Jason Matthews
Journal:  Toxicol Sci       Date:  2010-03-26       Impact factor: 4.849

7.  Motif Enrichment Analysis: a unified framework and an evaluation on ChIP data.

Authors:  Robert C McLeay; Timothy L Bailey
Journal:  BMC Bioinformatics       Date:  2010-04-01       Impact factor: 3.169

8.  Metabolic network topology reveals transcriptional regulatory signatures of type 2 diabetes.

Authors:  Aleksej Zelezniak; Tune H Pers; Simão Soares; Mary Elizabeth Patti; Kiran Raosaheb Patil
Journal:  PLoS Comput Biol       Date:  2010-04-01       Impact factor: 4.475

9.  Pscan: finding over-represented transcription factor binding site motifs in sequences from co-regulated or co-expressed genes.

Authors:  Federico Zambelli; Graziano Pesole; Giulio Pavesi
Journal:  Nucleic Acids Res       Date:  2009-05-31       Impact factor: 16.971

10.  MicroRNA-145 targets YES and STAT1 in colon cancer cells.

Authors:  Lea H Gregersen; Anders B Jacobsen; Lisa B Frankel; Jiayu Wen; Anders Krogh; Anders H Lund
Journal:  PLoS One       Date:  2010-01-21       Impact factor: 3.240

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.