Skip to main content

Qualitative reasoning of dynamic gene regulatory interactions from gene expression data

Abstract

Background

A gene regulatory relation often changes over time rather than being constant. But many gene regulatory networks available in databases or literatures are static in the sense that they are either snapshots of gene regulatory relations at a time point or union of successive gene regulations over time. Such static networks cannot represent temporal aspects of gene regulatory interactions such as the order of gene regulations or the pace of gene regulations.

Results

We developed a new qualitative method for representing dynamic gene regulatory relations and algorithms for identifying dynamic gene regulations from the time-series gene expression data using two types of scores. The identified gene regulatory interactions and their temporal properties are visualized as a gene regulatory network. All the algorithms have been implemented in a program called GeneNetFinder (http://wilab.inha.ac.kr/genenetfinder/) and tested on several gene expression data.

Conclusions

The dynamic nature of dynamic gene regulatory interactions can be inferred and represented qualitatively without deriving a set of differential equations describing the interactions. The approach and the program developed in our study would be useful for identifying dynamic gene regulatory interactions from the large amount of gene expression data available and for analyzing the interactions.

Background

Many mechanisms of biological processes are controlled by complex regulatory interactions between genes rather than by a single gene [1]. Therefore, identifying the gene regulatory interactions is essential to improving our understanding of biological processes. A gene regulatory relation often changes over time rather than being constant. However, many gene regulatory networks available in databases or literatures are static in the sense that they are either snapshots of gene regulatory relations at a time point or union of successive gene regulations over time. Static gene regulatory networks are simpler and easier to construct and understand than dynamic networks, but temporal aspects of gene regulations such as the order of the gene regulatory interactions and the pace of the interactions are ignored in static networks.

A gene involved in regulatory interactions with others has at least one activator or inhibitor. An activator initiates the transcription of the gene, so high level expression of the gene is not possible without an activator [2]. Thus, identifying genes and their activators or inhibitors is the key to constructing gene regulatory networks. Silvescu et al. [1] characterize the gene regulatory network in a Boolean model with multiple-time delays. But the Boolean model is restricted to logical relationships between variables. Probabilistic Boolean networks [3] and dynamic Bayesian networks [4] can reconstruct longitudinal regulatory networks from a set of mathematical equations if the equations precisely specify the networks, but fail when the underlying model is not correct [5].

In general dynamic relations are best represented by a system of differential equations, but differential equations are not typically used to represent dynamic gene regulatory relations. This is because dynamic gene regulatory interactions are not understood fully enough to derive differential equations despite the large amount of gene expression data available today. Even if differential equations are derived, they are often hard to solve. As shown later in this paper, we have developed a qualitative method for inferring dynamic gene regulatory interactions and visualizing them without deriving or solving a set of differential equations.

This paper presents a computational approach to uncovering gene regulatory relations and their temporal properties from a time-series gene expression data using a modified Pearson correlation coefficient and a new score scheme. For the temporal properties of gene regulatory relations, we infer the order of the gene regulatory interactions and the pace of the interactions. The identified gene regulatory interactions and their temporal aspects are stored in the regulation list and visualized as a gene regulatory network. All the algorithms have been implemented as a program called GeneNetFinder (http://wilab.inha.ac.kr/genenetfinder/) and tested on several gene expression data. The rest of this paper presents the algorithms and their experimental results.

Methods

Scoring scheme for gene regulatory relationships

The gene expression data of m genes with n samples is represented as an m × n matrix, where rows represent genes and columns represent various samples such as experimental conditions or time points in a biological process. Each element of the matrix represents the expression level of a particular gene in a particular sample. Two genes with similar expression patterns tend to be co-expressed at different time points. Figure 1 shows an example of the gene expression data for yeast genes during the yeast cell cycle, obtained from the Yeast Cell Cycle Analysis Project [6].

Figure 1
figure 1

Gene expression of 30 genes during the yeast cell cycle[6]. Each row represents a gene and each column represents a time point. Red areas indicate an increase in mRNA abundance while green indicates a decrease in mRNA abundance with respect to the control.

The gene expression matrix is analyzed for similarity between gene expressions at different time points. Three metrics are often used to measure the similarity of genes: Pearson correlation coefficient [7], Euclidean distance [8] and Spearman correlation [9]. To evaluate the regulatory relation between two genes, we modified the Pearson correlation coefficient. R 1(X, Y, i, p) in Equation 1 represents the correlation between gene X at time point i and gene Y at time point i + p. p is the time span of the gene regulation.

(1)

In Equation 1, N is the total number of time points contained in the time span, X k and Y k are the expression levels of genes X and Y at time k, and and are the average gene expression levels at all time points of the time span. The R1 score is in the range of [-1, 1]. Among the total i × p candidate regulations, the regulation with the maximum absolute value of R 1(X, Y, i, p) is selected as the regulatory relation between genes X and Y. If the expression level of gene X increases before that of Y increases, X is a candidate activator of gene Y; if the expression level of gene X increases before that of Y decreases, X is a candidate inhibitor of Y.

The modified Pearson correlation coefficient R 1 is useful for finding gene regulatory relations with a significant change in expression levels. But, it cannot distinguish gene regulatory relations with the same correlation but different gene expression levels (see Figure 2 for an example). Therefore, we use an additional score R 2, which is the Euclidean distance of the expression levels of the two genes. The score R 2 for the gene regulatory relation between X and Y is computed by Equation 2.

Figure 2
figure 2

Example of the gene regulatory relations with the same R1 score but different expression levels. The regulatory relations of two genes have the same R1 score of 0.94 when p = 0, but have different expression levels in (A) and (B).

(2)

where

In Equation 2, and are the average gene expression levels at all time points in the time span. X max is the maximum gene expression value of gene X. and are the maximum and minimum gene expression value of gene Y, respectively.

Both R 1 and R 2 scores are intended to represent a relation between a regulator gene X and its potential receiver gene Y. The regulatory relation between X and Y is not symmetric, so R 1(X, Y) ≠ R 1(Y, X) and R 2(X,Y) ≠ R 2(Y,X). An interesting observation from the actual data is that two genes with R 2 score < 3 tend to have an inductive relation, whereas those with R 2 scores > 6 tend to have an inhibitory relation. For example, in the dataset of 30 yeast genes, 89.2% of the activations have R 2 scores < 3, and 91.4% of the inhibitions have R 2 scores > 6. In an extended dataset of 6,177 yeast genes, 80.4% of the activations have R 2 scores < 3, and 92.1% of the inhibitions have R 2 scores > 6. Hence, we consider a gene regulation with R 2 score < 3 as an activation, and that with score > 6 as an inhibition.

Inferring gene regulatory relationships

In the microarray data for gene expression, we use the log-ratio (in base 2) of the red and green intensities. Thus, genes with mRNA abundance have positive log-ratios whereas those with absence of mRNA have negative log-ratios. From the gene expression profiles, we identify the gene regulations and include them in the regulation list. In the regulation list, +A(t) indicates that gene A is up-regulated at time t, and -A(t) indicates that gene A is down-regulated at time t. The symbol '→' represents a directional relationship between genes. There are four possible gene regulatory relations between two genes:

1. +A(t1) → +B(t2): up-regulation of A at time t1 is followed by up-regulation of B at time t2 (t2 >t1).

2. -A(t1) → +B(t2): down-regulation of A at time t1 is followed by up-regulation of B at time t2 (t2 >t1).

3. +A(t1) -> -B(t2): up-regulation of A at time t1 is followed by down-regulation of B at time t2 (t2 >t1).

4. -A(t1) → -B(t2): down-regulation of A at time t1 is followed by down-regulation of B at time t2 (t2 >t1).

The regulatory relation of gene A with gene B is determined by the sign of the R 1 score of the genes. A relation with a positive R 1 score implies that gene A activates gene B whereas a regulation with a negative R 1 score implies that A inhibits B. The R 1 score of each gene regulation is iteratively calculated using Algorithm 1. For genes A and B, the regulation with the largest absolute R1 score is chosen for the regulation between the genes and represented as R 1(A, B, t1, p). Algorithm 1 provides the top-level description of the method for inferring gene regulations and constructing a list with the regulations.

Algorithm 1

Construct a regulation list

1: Compute R 1(A, B, t1, p) between gene A at time point t1 and gene B at time point t1 + p for all pairs of genes.

2: Select the regulation with the largest absolute value of R 1(A, B, t1, p).

3: If 0 <p < 6, classify the regulation into one of the four types, +A(t1) → + B(t1+p), - A(t1 ) → + B(t1+p), +A(t1) → -B(t1+p), -A(t1) → - B(t1+p), and add it to the regulation list.

4: If p = 0, two genes are co-expressed or co-inhibited, and such gene regulation is not added to the regulation list.

5: If the new gene regulation is already in the regulation list, merge it with the previous regulation.

6: Go to step 2 to find the next gene regulation until no more regulation found.

After we construct a regulation list, we compute the R 2 score for the gene pairs in the regulation list. Some local maximum or minimum values are ignored when computing the R 2 score in a long time span. For example, all the three time spans shown in Figure 3A include at least 10 time points (18 time points in alpha-factor, 24 in cdc15, and 10 in cdc28). Expression levels of gene CLB1 has several wave peaks in the time span of CDC15, but only the maximum value in sub-timespan 2 of CDC15 will be selected when computing the R 2 score in the time span of CDC15. Time spans are divided into smaller sub-timespans as follows, and the R 2 score is not computed for sub-timespans with less than 6 time points.

Figure 3
figure 3

Changes in gene expression levels over time spans. (A) Gene expression levels of swi5 and clb1 in 3 time spans labeled as Alpha, Cdc15 and Cdc28. The label of a time span indicates an inducer of the time span. The time span Cdc15 is split into 3 sub-timespans, separated by dashed line. (B) Gene expression levels of clb6 and clb1 in 3 time spans of Alpha, Cdc15 and Cdc28. The label of a time span indicates an inducer of the time span. The time span Cdc15 is split into 4 sub-timespans, separated by dashed line.

1. A time point with the minimum expression level of the regulator gene becomes a splitting point of the time span.

2. Each sub-timespan starts with at least 3 consecutive time points that have a positive slope of a curve representing gene expression levels, and ends with at least 3 consecutive time points with a negative slope.

3. Each sub-timespan encompasses at least 6 time points, including the start and ending time points.

For example, the time span CDC 15 of Figure 3A is the longest one in the gene regulatory relation +CLB1(T)-> +SWI5(T+1), and split into 3 sub-timespans. The first sub-timespan of CDC15 has less than 6 time points, so the R 2 score is not computed for the first sub-timespan. The R 2 scores for the second and third sub-timespans are 0.24 and 0.38, respectively. Figure 3B is another example of a gene regulatory relation +CLB6(T) -> -CLB1(T+1). The time span CDC15 is split into 4 sub-timespans, and the third sub-timespan has only 3 time points. So, the R 2 score is computed for the remaining three sub-timespans, which are 27.02, 20.34, and 9.87, respectively.

Visualization of gene regulatory networks

All gene regulations identified in the previous step are visualized as a 2-dimensional gene regulatory network, in which a node represents a gene. Edge types and edge labels of the network represent gene regulatory relations. Arrows represent inductive interactions (relations+A(t1) -> +B(t2) and-A(t1) -> +B(t2)) and blocked arrows represent inhibitory interactions (relations +A(t1) -> -B(t2) and -A(t1) -> -B(t2)). The regulator gene, type of regulation (+ for induction and - for inhibition), and time delay of the regulation are annotated as edge labels. Each edge is labeled with R/s/T to indicate a regulator gene R, sign s of the log-ratio of the expression level of R, and the time delay T of the regulation.

For visualization of gene regulatory networks, two layout algorithms have been developed: grid layout and layered layout. As described in Algorithm 2, the grid layout algorithm positions all nodes at grid points. The node with the highest degree will be placed at the center grid point (node S in Figure 4A). Then, we position all nodes connected to the center node at adjacent grid points. Nodes with a higher degree are positioned earlier than those with a lower degree in the east, north, west, south, northeast, southwest, and southeast grid point of the current node (nodes 1-8 of Figure 4). Other nodes connected to the positioned nodes are placed in the same manner.

Figure 4
figure 4

Example of the grid layout. (A) Node S with the highest degree is placed in the center grid, and the nodes connected to S are placed in the adjacent grids in the specified order. (B) Grid layout by GeneNetFinder.

The layered layout algorithm, described in Algorithm 3, puts all nodes to horizontal layers. The node with the maximum degree is assigned to the top layer, and the nodes connected to the node are put in the next layer. If a layer has two nodes connected to each other, it makes a new layer above the layer and moves the node with a smaller degree to the new layer. The layered layout usually takes more time than the grid layout.

Algorithm 2

Grid layout

1: Find the node with the highest degree, and place it at the center grid point.

2: If there is a tie, select a node with a higher out-degree. Position all nodes connected to the center node in the adjacent grids. Nodes with a higher degree are positioned earlier than those with a lower degree in the east, north, west, south, northeast, northwest, southwest, and south east grid of the center node. If more than 8 nodes are connected to the center node, put the 9th node to the east of the 1st node, the 10th node to the north of the 2nd node, and so on.

3: Repeat step 2 for nodes connected to nodes that are already positioned. If an adjacent grid is occupied, move to the next possible position until it is available.

4: If there are disconnected nodes, repeat step 1 for the nodes and put them to the right of the previous subgraph.

Algorithm 3

Layered layout

1: Put the node with the maximum degree at layer 1. If there is a tie, select a node with a higher out-degree.

2: Assign the nodes connected the nodes at layer i to layer i+1.

3: Repeat steps 1 and 2 for the remaining nodes.

4: If two nodes at the same layer are connected to each other, make a new layer between the layer and the upper layer and move the node with a smaller degree to the new layer. Nodes with 0 out-degrees are also moved to the new layer.

5: Order the nodes in each layer by the Barycenter method [10].

6: If there are disconnected nodes, repeat steps 1-5 for the nodes and put them to the right of the previous subgraph.

Results and discussion

We implemented the algorithms in a program called GeneNetFinder using Microsoft Visual C#. GeneNetFinder is executable on any Windows systems, and the program and sample data of GeneNetFinder are available at http://wilab.inha.ac.kr/GeneNetFinder. Given a time-series data of gene expressions in log-ratios, it identifies gene regulatory interactions and visualizes them. This section shows the experimental results with the gene expression data of yeast cell cycling and human cell cycling.

Microarray data of 30 genes in the yeast cell cycle

The dataset of the yeast cell cycle, shown in Figure 1, includes 30 genes of yeast cell cycle from the Saccharomyces cerevisiae cell cultures [6]. The 30 yeast genes are known to be involved in the cell-cycle regulations. For the cell cycle genes, we first selected well-known genes and their regulator or regulated genes. CLB genes, for example, are known to promote cell cycle progression into mitosis [11]. CLN genes were selected because they have regulatory relations with CLB genes. The remaining genes were chosen randomly. There are 18, 24, 10 time points in the time spans of alpha-factor, cdc15 and cdc28, respectively.

From the dataset, GeneNetFinder identified 73 gene regulations and constructed a list of the gene regulations (Table 1). Figure 3A shows the gene expression levels of CLB1 and SWI5. Gene SWI5 encodes a transcription factor that activates transcription of genes expressed at the M/G1 boundary and in G1 phase. Genes CLB1 and SWI5 showed similar expression patterns and the R1 score computed for their relation was 0.85. For the two genes, GeneNetFinder inferred a gene regulatory relation +CLB1(T) → +SWI5(T+1), which means that up-regulation of CLB1 is followed by up-regulation of SWI5 at the next time point. This regulatory relation agrees with the experimental results by Althoefer [12]. The time span CDC15 of Figure 3A is the longest on in the gene regulatory relation +CLB1(T) →- +SWI5(T+1), and divided into 3 sub-sections. The 3 sub-sections showed the R 2 scores of 0.53, 0.24 and 0.38. Figure 3B shows another gene regulatory relation +CLB6(T) → -CLB1(T+ 1). This relation also had the time span of CDC15, which was split into 3 sub-timespans with the R 2 scores of 27.02, 20.34 and 9.87.

Table 1 Gene regulations identified in the time-series expression data of yeast cell cycle.

There are several resources that can be used to assess the gene regulations inferred by the program. We searched the KEGG, SGD and CYGD databases and literatures to see whether the databases contain a gene regulation that agrees with the identified gene regulation. KEGG has 29,471 pathways whereas SGD (http://www.yeastgenome.org/) and CYPD (http://mips.gsf.de/genre/proj/yeast/) provide genetics and functional networks of the budding yeast Saccharomyces cerevisiae, respectively. Gene ontology [13] can also be used to obtain gene regulatory relations; if a gene has a GO annotation of 'regulates' or 'regulated by', the gene can be considered as being involved in a gene regulation.

Gene regulations identified by the program are classified as certain, possible and uncertain depending on the number of supporting evidences (agreement with the databases, agreement with GO annotations, R 2 score < 3 for activation and R 2 score > 6 for inhibition):

1. A gene regulation is certain when it has at least two supporting evidences.

2. A gene regulation is possible when its R 2 score is either < 3 or > 6, and no other evidences.

3. A gene regulation is uncertain when it has no supporting evidence.

In the dataset of the yeast cell cycle, a total of 73 gene regulations were inferred by GeneNetFinder (Table 1). There were 48 certain gene regulations. 4 out of the 73 gene regulations, +CDC28->+SWI4(T+1),+HCM1(T) -> -CLB5(T+1), +HCM1 -> -CLN1(T+1) and +MGA1(T) -> +CDC5(T+1), had supporting evidences both in the databases and GO annotations. 43 out of the 73 gene regulations showed exact agreement with the known regulations in the databases. Only one gene regulation +USV1(T)->-SKM1(T+1) had the R 2 score > 6 and the GO annotation about the regulation. These 48 gene regulations are marked as underlined entries in Table 1, and more details are available in Additional file 1.

12 out of the 73 gene regulations, written in italics in Table 1, were possible regulations. They had the R 2 score either < 3 or > 6 with no further supporting evidence. These regulations should be verified by experimental evidence. The remaining 13 gene regulations had the R 2 score between 3 and 6 and no supporting evidence, so they are uncertain regulations. Even if the 13 regulations are false positives, at least 82.2% (60 out of 73) of the regulations inferred by GeneNetFinder agreed with known gene regulations. Table 1 shows the regulations for the first four time points only, and there are two more regulations identified at time points T+4 and T+5: -CLB6(T+4) -> +CDC28(T+5) [14] and -CDC20(T+4) -> -CLB6(T+5) [15].

The gene regulations should be consistent with the phase characteristics of the cell cycle. For example, CLB6 promotes progression of cells into the S phase and expresses periodically throughout the cell cycle [16]. CLB1 and CLB2 both promote cell cycle progression into mitosis and their transcripts accumulate during G2 and M. These biological processes are characterized by two regulations, +CLB6 -> -CLB1 and +CLB6 -> -CLB2, and these are included in the regulation list found by GeneNetFinder (Table 1). Figure 5 shows the gene regulatory network of all the gene regulations of Table 1.

Figure 5
figure 5

Visualization of the gene regulatory network of the yeast cell cycle. The gene regulations of Table 1 are displayed by the grid layout algorithm. Edge types and edge labels represent gene regulatory relations. Arrows represent inductive interactions (relations +A(t1) -> +B(t2) and -A(t1) -> +B(t2)) and blocked arrows inhibitory interactions (relations +A(t1) -> -B(t2) and -A(t1) -> -B(t2)). Each edge is labeled with R/s/T to indicate a regulator gene R, sign s of the expression level of R, and the time point T of the regulation.

Microarray data of 20 genes in the human cell cycle

This data set includes 20 genes in the human cell cycle [17]. The gene expression during the human cell cycle is synchronized by double thymidine blocking (Thy-Thy1, Thy-Thy2, and Thy-Thy3), thymidine-nocodazole blocking (Thy-Noc) and Mitotic selection (M). Additional file 2 shows the data of 20 genes in the human cell cycle. All regulations identified by GeneNetFinder are given in Additional file 2. 71 of 113 potential gene regulations were found in at least one of KEGG, Entrez Gene, BIND and PUBMED, and 44 of the 71 regulations had been determined by experimental methods. Thus, at least 62.8% of the identified regulations are in agreement with known regulations. Figure 6 shows the regulatory network of 15 human genes in the first time span along with the user interface of GeneNetFinder.

Figure 6
figure 6

User interface of GeneNetFinder and the gene regulatory network of the human cell cycle. The network in the top left corner shows 22 regulations between 15 human genes in the first time period of the human cell cycle, visualized as a layered graph. A list of gene regulations identified by the program are shown below the network. When the user clicks a node in the network, all connected nodes are shown in the graph navigator. The node list shows all the nodes in the network.

For further evaluation, we selected some genes. Gene CCNA2 encodes proteins of the highly conserved cyclin family which plays an important role in the cell cycle. CCNA2 binds and activates CDC2 kinases, and thus promotes both cell cycle G1/S and G2/M transitions. Then CDC2 encodes proteins which are members of the Ser/Thr protein kinase family. This protein is a subunit of the highly conserved protein kinase complex and essential for G1/S and G2/M phase transitions. In the KEGG pathway database, we found that CDC2 interacts with E2F1 and SKT15, and E2F1 has direct regulatory relationships with CDC2, CCNA2 and BRCA1. The protein encoded by the gene E2F1 is a member of the E2F family of transcription factors. The E2F family plays a crucial role in the control of cell cycle and action of tumor suppressor proteins. In summary, CCNA2 interacts with E2F1, CDC2, and CDKN1A; CDC2 interacts with E2F1, CCNA2, CCNB1, CDC25A, CDC25B, CDC25C and CDKN1A; and CCNB1 interacts with CDC2, CCNF, BRCA1 and CDKN1A. All these regulations agree with the regulations identified by GeneNetFinder.

Discussion

We tested GeneNetFinder on datasets of different sizes to see the effect of changes in genes on the prediction performance of the program. In the dataset of 90 yeast genes, it inferred 470 gene regulations, and 241 out of the 470 regulations have at least two supporting evidences such as agreement with the known data of databases, agreement with GO annotations, R2 score < 3 for activation, and R2 score > 6 for inhibition (Additional file 3). These regulations are classified as certain regulations in our study. 121 out of the 470 gene regulations have R2 score either < 3 or > 6, and these regulations are possible regulations. Thus, 77.02% of the gene regulations inferred by GeneNetFinder can be considered correct (Table 2). In a similar way, we tested GeneNetFinder on datasets of different number of genes, which were selected randomly from a pool of 90 genes in each run. The prediction was computed by taking the average of 10 runs in each dataset. Datasets of different sizes resulted in slightly different but similar prediction accuracies, and all of them are above 74%. Details are available at http://wilab.inha.ac.kr/genenetfinder/supplements_3.htm.

Table 2 Effect of changes in genes on the prediction performance.

There are a few programs that can infer gene regulatory interactions from time-series gene expression data [18, 19]. ASIAN [20], for example, finds correlation relationships between gene clusters and visualizes them as an undirected graph. While gene regulatory networks visualized by GeneNetFinder represent gene regulatory interactions between individual genes along with temporal aspects of the interactions, networks visualized by ASIAN represent correlations between gene clusters. Thus, it cannot show regulatory interactions between individual genes nor the order or pace of the interactions. BioTapestry [21] is an interactive tool for building and visualizing gene regulatory networks. For visualizing gene regulatory networks BioTapestry uses different layout methods from GeneNetFinder, and temporal aspects of gene regulatory interactions are not automatically shown as edge labels of the networks. BioTapestry allows flexible edge labels, which can be annotated with any properties specified by the user.

Conclusions

Gene regulatory interactions usually change over time rather than being constant, but many databases or literatures provide static gene regulatory networks only. They are either snapshots of gene regulatory relations at a time point or union of successive gene regulations over time. Static gene regulatory networks are easier to construct and understand than dynamic networks, but cannot provide information on temporal aspects of gene regulations.

This article has presented an algorithm for qualitatively reasoning dynamic gene regulatory relations from gene expression data using two types of scores, R 1 and R 2. The algorithm has been implemented in a program called GeneNetFinder. From the time-series data of gene expression, GeneNetFinder infers not only gene regulatory interactions but also the temporal aspects of the regulatory interactions. As for the temporal aspect of gene regulatory relations, it identifies the order of the gene regulatory relations and the pace of the relations. The identified gene regulatory interactions and their temporal aspects are stored in the regulation list and visualized as a gene regulatory network. In the network visualized, gene regulations and their temporal aspects are represented by edge types and edge labels.

We tested GeneNetFinder on several datasets, including the yeast cell cycle data and the human cell cycle data. Experimental results indicate that the dynamic nature of dynamic gene regulatory interactions can be identified and represented qualitatively without deriving or solving a set of differential equations describing the interactions. GeneNetFinder is yet a prototype, but the approach of our work would be useful for identifying dynamic gene regulatory interactions from the large amount of gene expression data available at the present time. In particular, the gene regulatory networks constructed by GeneNetFinder can be used to find new gene regulatory relations or to refine known regulatory relations.

References

  1. Slivescu A, Honavar V: Temporal Boolean network models of genetic networks and their inference from gene expression time series. Complex Systems. 1997, 11:

    Google Scholar 

  2. Yeang CH, Jaakkola T: Time series analysis of gene expression and location data. Thrid IEEE symposium on Bioinformatics and Bio Engineering (BIBE'3) Bethesda, Maryland: Institute of Electrical and Electronics Engineers, Inc. 2003, 305-312.

    Google Scholar 

  3. Shmulevich I, Dougherty ER, Kim S, Zhang W: Probabilistic Boolean Networks: a rule-based uncertainty model for gene regulatory networks. Bioinformatics. 2002, 18 (2): 261-274. 10.1093/bioinformatics/18.2.261.

    Article  CAS  PubMed  Google Scholar 

  4. Hartemink AJ, Gifford DK, Jaakkola TS, Young RA: Using graphical models and genomic expression data to statistically validate models of genetic regulatory networks. Pac. Symp. Biocomput. 2001, 422-433.

    Google Scholar 

  5. Pomerening JR, Kim SY, Ferrell JE: Systems-level dissection of the cell-cycle oscillator: bypassing positive feedback produces damped oscillations. Cell. 2005, 122 (4): 565578-10.1016/j.cell.2005.06.016.

    Article  Google Scholar 

  6. Spellman PT, Sherlock G, Zhang MQ, Iyer VR, Anders K, Eisen MB, Brown PO, Bostein D, Futcher B: Comprehensive Identification of Cell Cycle-regulated Genes of the Yeast Saccharomyces cerevisiae by Microarray Hybridization. Molecular Biology of the Cell. 1998, 9 (12): 3273-3297.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  7. Rodgers JL, Nicewander WA: Thirteen Ways to Look at the Correlation Coefficient. The American Statistician. 1988, 42: 59-66. 10.2307/2685263.

    Article  Google Scholar 

  8. Danielsson PE: Euclidean distance mapping. Computer Graphics and Image Processing. 1980

    Google Scholar 

  9. Spearman C: The proof and measurement of association between two things. American Journal of Psychology. 1904, 15: 72-101. 10.2307/1412159.

    Article  Google Scholar 

  10. Sugiyama K: Graph drawing and Applications for Software and Knowledge Engineers. World Scientific. 2002

    Google Scholar 

  11. Lew DJ, Weinert T: Cell cycle control in Saccharomyces cerevisiae. The Molecular and Cellular Biology of the Yeast Saccharomyces: Cell Cycle and Cell Biology. Edited by: Pringle JR, Broach JR, Jones EW. 1997, New York: Cold Spring Harbor Laboratory Press, 607-695.

    Google Scholar 

  12. Althoefer H, Schleiffer A, Wassmann K, Nordheim A, Ammerer G: Mcm1 is required to coordinate G2-specific transcription in Saccharomyces cerevisiae. Mol Cell Biol. 1995, 15 (11): 5917-5928.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  13. Ashburner M, Ball CA, Blake JA, Botstein D, Butler H, Cherry JM, Davis AP, Dolinski K, Dwight SS, Eppig JT, Harris MA, Hill DP, Tarver LI, Kasarskis A, Lewis S, Matese JC, Richardson JE, Ringwald M, Rubin M, Rubin GM, Sherlock G: Gene Ontology: tool for the unification of biology. Nature Genetics. 2000, 25 (1): 25-29. 10.1038/75556.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  14. Kuhne C, Linder P: A new pair of B-type cyclins from Saccharomyces cerevisiae that function early in the cell cycle. EMBO J. 1993, 12 (9): 3437-3447.

    PubMed Central  CAS  PubMed  Google Scholar 

  15. Alexandru G, Zachariae W, Schleiffer A, Nasmyth K: Sister chromatid separation and chromosome re-duplication are regulated by different mechanisms in response to spindle damage. EMBO J. 1999, 18: 2707-2721. 10.1093/emboj/18.10.2707.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  16. Schwob E, Nasmyth K: CLB5 and CLB6, a new pair of B cyclins involved in DNA replication in Saccharomyces cerevisiae. Genes Dev. 1993, 7: 1160-1175. 10.1101/gad.7.7a.1160.

    Article  CAS  PubMed  Google Scholar 

  17. Whitfield ML, Sherlock G, Saldanha AJ, Murray JI, Ball CA, Alexander KE, Matese JC, Perou CM, Hurt MM, Brown PO, Botstein D: Identification of Genes Periodically Expressed in the Human Cell Cycle and Their Expression in Tumors. Mol Biol Cell. 2002, 13 (6): 1977-2000. 10.1091/mbc.02-02-0030..

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  18. Yeung MKS, Tegner J, Collins JJ: Reverse engineering gene networks using singular value decomposition and robust regression. Proc Natl Acad Sci USA. 2002, 99 (9): 6163-6168. 10.1073/pnas.092576199.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  19. Wang Y, Joshi T, Zhang XS, Xu D, Chen LN: Inferring gene regulatory networks from multiple microarray datasets. Bioinformatics. 2006, 22 (19): 2413-2420. 10.1093/bioinformatics/btl396.

    Article  CAS  PubMed  Google Scholar 

  20. Aburatani S, Goto K, Saito S, Toh H, Horimoto K: ASIAN: a web server for inferring a regulatory network framework from gene expression profiles. Nucleic Acids Res. 2005, 33: W659-W664. 10.1093/nar/gki446.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  21. Morley RH, Lachani K, Keefe D, Gilchrist MJ, Flicek P, Smith JC, Wardle FC: A gene regulatory network directed by zebrafish No tail accounts for its roles in mesoderm formation. Proc Natl Acad Sci U S A. 2009, 106: 3829-3834. 10.1073/pnas.0808382106.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

Download references

Acknowledgements

This work was supported by the National Research Foundation of Korea (NRF) grant (2009-0091509) and by the Mid-career Researcher Program through NRF grant (2008-0058358) funded by the MEST.

This article has been published as part of BMC Genomics Volume 11 Supplement 4, 2010: Ninth International Conference on Bioinformatics (InCoB2010): Computational Biology. The full contents of the supplement are available online at http://www.biomedcentral.com/1471-2164/11?issue=S4.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Kyungsook Han.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors contributions

Yu Chen developed the algorithm and prepared the first draft of the manuscript. Byungkyu Park helped Yu Chen develop the method. Kyungsook Han supervised the work and rewrote the manuscript.

Electronic supplementary material

12864_2010_3473_MOESM1_ESM.mht

Additional file 1 - Regulation of 30 yeast genes during the cell cycle: Supplementary data at http://wilab.inha.ac.kr/GeneNetFinder/supplements_1.htm (MHT 5 MB)

12864_2010_3473_MOESM2_ESM.mht

Additional file 2 - Regulation of 20 human genes during the cell cycle: Supplementary data at http://wilab.inha.ac.kr/GeneNetFinder/supplements_2.htm (MHT 5 MB)

12864_2010_3473_MOESM3_ESM.mht

Additional file 3 - Regulation of 90 yeast genes during the cell cycle: Supplementary data at http://wilab.inha.ac.kr/GeneNetFinder/supplements_3.htm. (MHT 134 KB)

Rights and permissions

Open Access This article is published under license to BioMed Central Ltd. This is an Open Access article is distributed under the terms of the Creative Commons Attribution License ( https://creativecommons.org/licenses/by/2.0 ), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Chen, Y., Park, B. & Han, K. Qualitative reasoning of dynamic gene regulatory interactions from gene expression data. BMC Genomics 11 (Suppl 4), S14 (2010). https://doi.org/10.1186/1471-2164-11-S4-S14

Download citation

  • Published:

  • DOI: https://doi.org/10.1186/1471-2164-11-S4-S14

Keywords