Background

Definitions and presumptions

We define a list of transcription factor binding sites (TFBSs), t1,t2,…,t N , where t i is either a DNA motif, m i or position weight matrix (PWM), w i . The former is a variable-length character-string from the four-nucleotide DNA alphabet, while the latter is a two-dimensional matrix of preset weights.

A group, G a , is a FASTA file populated with user-provided promoter sequences. Let G a ,Ga+1,…,G N represent a list of N groups such that N≥2. We define a contingency matrix, c i as a 2×2 matrix, used to model t i over-representation across G a and Ga+1. A set of statistical metrics, S, quantify degree of t i over-representation given c i .

Transcription factors and binding site representation

Plants are constantly surrounded by stimulus, be-they deletorious pathogens or positive stimuli such as light and nutrients. In order for the plant to respond to these signals, plants must utilize regulatory proteins known as transcription factors (TFs) to facilitate transcriptional reprogramming in a dynamic, tissue-dependent manner. These proteins bind to enhancer or promoter cis- elements and facilitate the recruitment of RNA polymerase II. This combinatorial binding of TFs facilitates downstream execution of adaptative signals in the face of drought, herbivory, and high salinity. By quantifying binding–sites for these regulatory proteins, inherent transcriptional dynamics and magnitude of over-representation can be inferred.

TFs are classified into families by inherent DNA-binding signatures otherwise known as protein domains. In Arabidopsis thaliana, for instance, there are 64 known TF families[1], and it is not uncommon for different TF family members to exhibit relatively similar functionality. This redundancy is especially true when it comes to stress-response[24].

DNA motifs and PWMs are two models frequently used to define a TFBS. The former is a short cis- element region presumed to be a TFBS, while the latter models nucleotide propensities of a TFBS in the form of a matrix[5, 6]. PWMs have been used across a broad spectrum of plant investigations such as identification of conserved exonic splice-site enhancers in Arabidopsis thaliana[7], prediction of potential seed-storage regulatory elements in mustards, grasses and legumes[8], and identification of novel regulatory elements in Arabidopsis thaliana[9]. With assays such as ChIP-ChIP and ChIP-Seq, novel regulatory elements can be identified and modeled as a PWM[10].

Implementation

Marina is an operating-system independent GUI software tool built using the Java programming language.

This manuscript builds on the works of Chekmenev et. al[11], Loots et. al[12], and Kel et. al.[13], by implementing multiple statistical metrics to identify the maximum number of biologically-sound TFBSs, while accounting for cases when large promoter sets are provided.

To begin analysis with Marina, at least two FASTA files populated with user-provided promoter sequences are required. Each FASTA file is known as a group. A group, for instance, could represent promoter sequences of interest for a particular condition or time point.

The Marina workflow (Figure1) is partitioned into three distinct phases. The first phase performs abundance-estimation given a catalog of known TFBS models (Figure1a). Initial abundance derivation is performed via mapping of the TFBS onto user-provided promoter sequences. Following TFBS mapping, low-quality TFBSs are removed (Figure1b). Finally, a collection of statistical metrics quantify and rank TFBS over-representation (Figure1c).

Figure 1
figure 1

Marina workflow. a) A group is an umbrella-term to represent a set of promoter sequences. In order to run Marina, at least two groups must be provided. In doing so, TFBSs within each group can be contrasted and statistically quantified using TFBSs modeled as either DNA motifs or PWMs. Marina can also run if both these data-structures are provided, hence the name combined. b) Each group is modeled as a uni-directional graph, providing a means of trimming low-abundant promoter-sequences and TFBSs. c) A diverse collection of statistical metrics are used to model and quantify TFBS abundance. Magnitude of TFBS abundance is ranked and the hypergeometric distribution p-value computes significance of TFBS over-representation.

Phase 1: Binding site mapping

In order to effectively quantify TFBS abundance using this tool, TFBS models must be provided. These models are in the form of either DNA motifs or PWMs. Cumulatively, 1,240 TFBS models were mined and utilized throughout this study. Of these models, 1,160 were DNA motifs with the remaining 80 being PWMs; motif-to-PWM ratio of 13:1.

Plant DNA motif and PWM models originated from AthaMap[14], AGRIS[15], PlantCARE[16], TRANSFAC[17], and JASPAR[18]. DNA motifs and PWMs were stored in either a tab-delimited or FASTA file format, respectively. Due to licensing restrictions, Marina does not come pre-packaged with a catalog of TFBS models, however several PWMs are provided, built from known PDB structures using the 3DTF web-server[19]. Be it PWMs or DNA motifs, a user-friendly schema is provided for importing custom TFBS profiles.

DNA motif and PWM mapping

To efficiently derive over-representation using DNA motifs, Marina scans promoter sequences for any occurrence of this motif using the Boyer-Moore-Horspool algorithm[20]. Due to the short length of many DNA motifs, elements such as ARF1 (TGTCTC)[21] may ubiquitously map throughout a promoter sequence with many mappings having little biological significance. Though this tool provides the option to filter short-length models be it PWMs or DNA motifs, resultant abundance estimations may seldom be biologically significant simply due to the likelihood of spurious mappings.

Marina maps each PWM onto promoter sequences using a concurrent implementation of the P-MATCH algorithm[11]. P-MATCH calculates a likelihood that a particular candidate promoter region contains a TFBS. By default, Marina uses a probability-cutoff of 0.80; any sub-sequence with a score greater than this cutoff is rendered a potential TFBS.

Alongside DNA motif and PWM extrapolations is a third pseudo-extrapolation known as combined mode. This mode simply performs the two former extrapolations back-to-back, merging their results into a singular data-structure. Combined mode capitalizes on the abundance of DNA motifs and probabilistic power of PWMs.

Phase 2: Modeling TFBS over-representation

TFBS abundances across all promoter sequences are modeled using a group-specific acyclic graph. Each graph is organized such that group name is the root-node and each TFBS is a child leaf node. Every TFBS node references a list of promoter sequences containing this TFBS.

Per graph child node, two measures are used to model initial TFBS abundance: raw counts and support[22]. The former is simply defined as the number of promoter sequences which contain this particular TFBS. Raw counts are a useful, comparable metric if all groups have approximately the same number of promoter sequences. Unfortunately some groups may be larger than others, resulting in skewed and uncontrastable counts. To circumvent this possibility, the latter probabilistic measure, support, comes in helpful. Support, P(t i ,G a ), is a data-mining metric for representing abundance of a TFBS within a particular group[22]. A collection of statistical metrics continue where support leaves off, providing a means of deducing TFBS abundance.

Both raw-counts and support serve as viable metrics to initially model TFBS abundance, however there may be cases were a rift between the two measures can appear. For example, suppose a single TFBS mapped only once to a group. Due to such minimal mapping, raw-count will be small but support would be large. Both low-support and low-count thresholds exist so as to filter corresponding graph nodes. Such graph trimming ensures that high-support and/or high-count TFBS nodes remain as they are more likely of having correlations to a particular group[23]. A caveat with threshold cutoffs is that low-abundance TFBSs will get discarded.

Phase 3: Deriving over-represented TFBSs using numerous statistical metrics

Given remaining TFBSs nodes, Marina aims to deduce magnitude of over-representation per TFBS, t i by contrasting its abundance across groups G a and Ga+1. To facilitate this objective, a collection of 7 knowledge discovery metrics, S, are implemented (Table1). Though a single metric can theoretically suffice, employing the entire set provides a means to appreciate unique features per measure and avoid individual bias. This table is by no means exhaustive as there are well over 20 frequently used metrics[24, 25]. The metrics in this table were selected so that there exists a sound mixture of both well-studied association and correlation measures.

Table 1 Statistical metrics

In order to utilize such measures, TFBS abundances must be modeled in a suitable data-structure. A contingency matrix, c i , is an ideal data-structure candidate as it models TFBS distributions throughout multiple, independent groups (Table2). Each metric within S processes frequencies within a contingency matrix, c i , so as to quantitatively deduce over-representation of TFBS, t i . Certainly not all metrics deduce magnitude of TFBS over-representation the same, resulting in difficulties as to which TFBSs are unanimously most over-represented by all metrics. A solution to bringing uniform over-representation agreement across all metrics is to standardize contingency matrix counts using Iterative Proportional Fitting (IPF)[33].

Table 2 Contingency matrices model TFBS over-representation

Iterative Proportional Fitting (IPF)

IPF is an algorithm for standardizing counts in a two-dimensional contingency matrix such that matrix row and column marginals are equal to one another (Table3). Through such adjustment, inherent associations and correlations can be discovered[34]. By performing IPF-standardization, output for all 7 metrics become normalized so as to agree which TFBSs are the most over-represented.

Table 3 IPF-standardization yields equal marginals in a contingency matrix

Equations 1 and 2 present an implementation of the IPF algorithm originally outlined by Tan et al.[35]. The former equation adjusts counts, a, such that they are equal on the diagonal axis. The latter equation then subtracts the remainder of the counts from that of the entire matrix sum, N.

c i 1 , 0 = c i 0 , 0 =a= N c i 1 , 1 c i 0 , 0 2 c i 1 , 1 c i 0 , 0 + c i 1 , 0 c i 0 , 1
(1)
c i 0 , 1 = c i 1 , 0 = N 2 a
(2)

Results and discussion

Case study: over-represented Glycine max TFBSs during a Phakopsora pachyrhizi time-course infection

To evaluate the functionality of this software tool, we utilized a two time-course RNA-Seq study that investigates soybean (Glycine max) transcriptional dynamics upon pathogenesis with soybean rust (SR; Phakopsora pachyrhizi). As outlined in our previous study, susceptible Williams 82 soybean leaves were inoculated with SR and assayed using RNA-Seq 10 days after infection (dai)[36]. An accompanying uninoculated control was also assayed to serve as a baseline condition. In both the control and 10 dai samples, a total of 5,940,995 70bp reads and 5,574,892 40bp reads were respectively sequenced using the Illumina platform (GenomeAnalyzer IIx). Sequenced reads were deposited in NCBI SRA under accessions SRX100854, SRX129967 and SRX100853, SRX129959, respectively.

Per run, quality assessment and control (QA/QC) entailed removal of low quality reads and trimming of low-quality 3’ ends should its quality score be less than 22. Reads were also discarded if they mapped at least once to either the human genome (Hg19) or the JCVI Microbial Resource[37]. Upon QA/QC completion, a total of 5,015,459 control reads and 5,420,745 10 dai reads passed filtering; quality-scores of 27 and 30, respectively. For each time point, reads were mapped with at-most 3 nucleotide mismatches onto the soybean transcriptome build (Glyma 1.0) using BWA[38]. Custom Python scripts inferred differential expression by deriving RPKM[39] andlo g 2 RPK M 10 dai RPK M 0 dai per transcript.

Two gene-sets were then declared to contain the top 600 induced and 600 suppressed differentially expressed genes (DEGs), respectively. Per gene set, the promoter sequence 2.5kb upstream from each genes transcription start site (TSS) was retrieved and appended to a FASTA file. Both FASTA files in-conjunction with 80 plant PWMs and 1,160 plant-specific DNA motifs served as input into Marina.

Marina identified 71 potentially over-represented TFBSs between the control and 10 dai groups (Table4). As shown in this table, there exists no consensus amongst the various metrics as to which TFBS is truly the most over-represented. There are however some TFBSs that are ranked by all metrics in a relatively uniform manner: AG, ATHB6, and ABFS. For all other TFBSs, it is difficult to deduce magnitude of over-representation. Such a scenario warrants IPF-standardization as it normalizes metric-ranks to agree in-concert which TFBSs are the most over-represented (Table5). By visually contrasting this table with that of Table4, it is clear that unstandardized ranks from Laplace Correction (LP), Confidence (CF) and Lift (LI) perfectly equal their IPF-standardized counterpart.

Table 4 Various metrics infer differing magnitudes of TFBS over-representation
Table 5 IPF-standardized abundances provides agreement amongst all metrics

Many over-represented TFBSs have defense or stress-response functions

Given the list of IPF-standardized TFBSs (Table5), all 4 WRKY genes were over-represented at 10 dai. These abundances are supported by numerous studies which show that WRKY genes are perceived upon PAMP signals or abiotic stressors[4043]. WRKY genes drive defense-response by regulating NONEXPRESSOR OF PR1 (NPR1) expression by binding to W-box motifs in the NPR1 promoter. NPR1 protein binds with TGA TFs which regulate pathogenesis-response (PR) expression, hence providing a means of positively regulating SA-defense response[4446].

Similar to WRKY, a bZIP family TFBS, HY5, was also over-represented 10 dai. Inextricably linked to photomorphogenesis, this TF is also known for its positive regulation of auxin signalling; a phytohormone which regulates defense response[47, 48]. Through interactions with HY1 and MYC2, HY5 is able to regulate photomorphogenesis, ABA and JA signaling[49, 50].

Much like MYC2, AtMYB2 is not only over-represented at 10 dai but also plays a role in ABA-signaling. Microarray analyses on Arabidopsis plants with 35S:AtMYC2/AtMYB2 over-expression constructs revealed induced expression of several ABA-regulated genes[51].

The GT (Trihelix) TF family member, GT-3b, was over-represented at 10 dai. Much is unknown about this TF family let alone GT-3b, however what is known is that many GT members, like HY5, regulate photomorphogenic signaling[52]. A recent study showed how GT-2a and GT-2b over-expression positively-regulates ABA-signaling[53]. Though an over-expressed GT-3b construct was not part of this recent study, translating findings from GT-2a and GT-2b over to GT-3b could reveal potentially novel insights into whether GT-3b plays a part in ABA and defense-signaling roles.

Strong relationship between degree of TFBS over-representation and IPF-rank

Due to the multi-dimensional nature of unstandardized TFBS ranks (Table4), dimensionality reduction was performed to facilitate rank visualization on a 2D coordinate plane. To carry-out such analysis, Principle Component Analysis (PCA) followed by bi-variate clustering was executed using the R library clusplot[54]. All 71 TFBSs were partitioned into 6 discrete clusters and labeled based on their respective IPF-standardized rank (Figure2). Interestingly, there appears to be a strong relationship between the magnitude of TFBS over-representation and IPF-standardized rank. This suggests that IPF-standardization is suitable for deducing magnitude of over-represented TFBSs.

Figure 2
figure 2

Clustering of over-represented TFBS. Performing dimensionality reduction on unstandardized TFBS ranks (Table4) reveals distinct clusters of over-representative TFBSs. Each point in this 2-D coordinate plane references a unique TFBS, labeled based on its IPF-rank. From these 6 clusters, there appears to be a strong relationship between magnitude of TFBS over-representation and TFBS IPF-rank. The first two clusters, for instance, encapsulate all WRKY genes, GT-3b and HY5: genes perceived during defense response. This suggests that IPF-standardized ranks can elucidate magnitude of TFBS over-representation.

Comparative software analysis

Several actively-used software tools and web-interfaces are available to quantify TFBS over-representation[14, 15, 18, 5557]. We classified such tools into two classes: software that deduce TFBS over-representation given either 1) one promoter-sequence set or 2) at least two promoter-sequence sets. Marina falls into this latter class and as does a popular software tool, F-MATCH[13]. Both tools require two FASTA files as input such that one file serves as a query sequence-set while the other a baseline control. Degree of over-representation is therefore deduced by statistically contrasting TFBS over-representation across these two groups.

Both software tools were compared using three independent sets of promoter-sequences of varying sizes. Each of these three analyses encompassed promoter-sequences of DEGs 10 dai from our prior soybean – soybean rust RNA-Seq study[36]. F-MATCH and Marina identify relatively the same number of over-represented TFBSs when promoter-sequence sets are 600 sequences in size (Table6). As these promoter sets increase in size, Marina maintains steady consistency as to identification of over-representated TFBSs, while F-MATCH failed to detect any over-represented TFBSs. We believe the reasoning behind why F-MATCH yields 0 over-represented TFBSs while Marina identified almost 50 TFBSs to be attributed towards usage of the binomial distribution by F-MATCH, which is known to be sensitive to large test sets. As far as output consistency between the two tools, our only comparison pertains to results obtained with 600 sequences sets. Given the 44 F-MATCH and 47 Marina over-represented TFBSs, 21 TFBSs were shared between the two result-sets. Unlike F-MATCH, we did not include TRANSFAC Professional PWMs in our analysis. We believe by introducing such PWMs, the number of shared TFBSs would certainly increase.

Table 6 Comparing Marina and F-MATCH given catalogs of PWMs and DNA motifs

Conclusions

Marina is a operating-system independent software tool to identify over-represented TFBSs across different groups of promoter sequences. We illustrate its usage using an RNA-Seq plant-pathogen study, however promoter sequences from any organism can be analyzed using Marina as long as compatible TFBS models are provided. We also show its capability to identify over-represented TFBSs regardless of input size. Given large sets of DEGs, our results show that by contrasting their promoter sequences, TFBSs perceived during defense and stress response were significantly over-represented. Other lesser-known TFBSs joined these ranks, raising questions as to potential candidate TFs affiliated with defense-response.

The underlying algorithms within this tool are guided by a catalog of user-provided TFBS models be-it DNA motifs or PWMs. Thankfully, many regulatory element resources and databases exist. By contrasting this software tool to a popular alternative, we show that Marina is built for large promoter-sequence sets while being able to identify biologically sound over-representative TFBSs.

Availability and requirements

Project name: Marina.

Project home page: http://mason.gmu.edu/~phossein/marina/

Operating system(s): Operating-system independent.

Programming language: Java version 7+.

Other requirements: None.

License: BSD.