Skip to main content

Function2Gene: A gene selection tool to increase the power of genetic association studies by utilizing public databases and expert knowledge

Abstract

Background

Many common disorders have multiple genetic components which convey increased susceptibility. SNPs have been used to identify genetic components which are associated with a disease. Unfortunately, many studies using these methods suffer from low reproducibility due to lack of power.

Results

We present a set of programs which implement a novel method for searching for disease-associated genes using prior information to select and order genes from publicly available databases by their prior likelihood of association with the disease. These programs were used in a published study of childhood-onset SLE which yielded novel associations with modest sample size.

Conclusion

Using prior information to decrease the size of the problem space to an amount commensurate with available samples and resources while maintaining appropriate power enables researchers to increase their likelihood of discovering reproducible associations.

Background

Many common disorders have genetic components which convey increased susceptibility. While linkage and association analyses have been quite successful in identifying rare variants with high penetrance, such as in Huntington's disease [1] and some forms of cancer [2], the ability of these approaches to detect common variants with more modest effects (less penetrance) is limited. Frequent alleles with modest genetic effects play important roles in the susceptibility to most diseases. For example, most autoimmune disorders involve multiple alleles of different genes with individual low penetrance which also interact with environmental factors to produce the final disease phenotype. Dissecting the disease phenotype into the individual genes and associated alleles that are responsible is crucial for understanding the mechanism of the disease and ultimately developing treatment modalities [3].

To this end, many researchers have been using genome-wide approaches to locate Single Nucleotide Polymorphisms (SNPs) that are in disequilibrium with a disease-causing allele, or associated with a disease phenotype [3]. Unfortunately, the requirement to completely scan the entire genome with sufficient SNP coverage required to achieve an appropriate study-wide power as well as the concomitant increase in number of subjects required to overcome the multiple-testing effect makes this type of study prohibitively expensive. Indeed, many association studies are under-powered, which leads to low reproducibility, compounded additionally by publication bias [4–7].

There are two general methods to reduce the number of SNPs tested in a search for variants which convey susceptibility. The first is to reduce the number of SNPs necessary to cover the entire genome by maximizing the information conveyed by each individual SNP. This process involves the elimination of redundant SNPs whose state is already determined with high probability by other SNPs in the study [8, 9]. The second method is to use prior available information to select genes and genomic regions likely to be involved in a disease and testing the most likely genes and regions in preference to the least likely. While this approach does have advantages over a whole-genome study, specifically in financial cost, time required and a smaller number of subjects needed to assure reasonable power, it does have disadvantages in that it does not select candidate genes which are not associated with biological functions or genomic regions currently thought to be related or linked to a disease.

In order to determine which genes or genomic regions are likely to be associated with the disease, it is necessary to connect genes and genomic areas with available literature on the disease and disease-associated pathways. The implementation we present here relies on experts to build a list of keywords and genomic areas from the available literature and expert knowledge coupled with publicly available databases to connect keywords and genomic areas to specific genes. An alternative using automated information extraction techniques which do not rely on expert knowledge is presented in the discussion. This experimental design, where the genes (and consequently, SNPs within those genes) are selected using prior available information allows for the determination of the prior probability that a particular gene is associated with a disease.

Once specific genes have been selected, the SNPs used in the study need to be selected. A popular class of methods is the tagSNP methods, which attempt to reduce the number of SNPs while maximizing the information that each SNP represents by grouping SNPs that are in linkage disequilibrium with each other and in the same phase (see [8, 9] for a comparison of different methods). The genes suggested by our program and its associated method do not necessarily require such powerful techniques, but discarding redundant SNPs will be useful in maximizing power while reducing cost. Beyond discarding non-informative SNPs, special importance should be placed on functional SNPs as they are more likely to actually represent the disease allele in question.

The method presented here uses a combination of automated and manual approaches to maximize the power of a study using SNPs. The method has the following steps:

  1. 1.

    Use expert knowledge and literature to identify a set of keywords (biological functions and genetic regions) which have high prior probability of being associated with the disease.

  2. 2.

    Use publicly available databases to select genes that reference the set of keywords.

  3. 3.

    Rank the identified genes based on their prior probability of association using the selection results and expert knowledge.

  4. 4.

    Choose an appropriate number of genes for SNP selection and association studies based on the number of cases available, monetary, and time constraints of the study while maintaining acceptable study-wide power.

  5. 5.

    Conduct study.

  6. 6.

    Analyze results, optionally using the prior probability of association obtained during genetic selection.

Implementation

The application is separated into a series of separate scripts, each of which has a specific function, and operate in a specific order (see Figure 1).

Figure 1
figure 1

Schematic of the gene selection process. Flow chart of the separate methodology and the scripts which enact the methodology, as described in the introduction and implementation sections.

Once a set of keywords (biological functions and genomic locations judged to be associated or otherwise involved with the disease) has been identified by expert knowledge of the disease in question, publicly available databases (currently NCBI, GeneCards, and Harvester are defaults, but Uniprot and Ensembl are also supported) are queried in series with delays between each query as appropriate for each database to avoid overloading them. Because there is no well documented common interchange format for these databases, the get_series of scripts download the HTML (or XML) which the search requests generate and save it. To avoid putting unreasonable demands on the databases, the get_scripts limits the number of requests they make per minute.

After all of the HTML (or XML) has been retrieved, the next series of scripts (parse_) are run which use the HTML::Parse (or XML::Parser::Expat) module to extract the gene name, accession number for the reference sequence, genomic location, alias(es), function(s), and description.

These files are then combined into a single file by combine_results that tracks what database and keyword resulted in which genes. The aliases from all databases are joined. Gene descriptions are retrieved from each database; the longest description is retained in the final list. For example, Harvester, when queried with "adhesion", returns VCAM1 (amongst others). Harvester also returns VCAM1 when queried with "inflammation". GeneCards also returns VCAM1 for these two queries. combine_results would then indicate that GeneCards returned VCAM1 twice, Harvester returned VCAM1 twice, and it was returned for "adhesion" and "inflammation". At the same time three separate weighting procedures are applied to order the genes. First, a simple approach, dubbed "rzscore", simply counts the number of times that a gene was returned by unique search terms, and orders the results from most number of term matches to least. The second, allows user-specified weights to be applied to each keyword, and orders the results by the sum of the weights of the corresponding keywords which returned a result. The third method automatically weights the keywords to avoid over-counting keywords which are entirely subsets of other keywords. It does this by dividing the number of results returned by a keyword by the sum of the number of results returned by that keyword and any other keyword, including itself.

To facilitate easier use of this collection of meta-search utilities, a script which binds them all together has also been provided, called function2gene, which takes a set of keywords, an optional set of databases to query, and returns the complete tabulated results to the specified directory.

By using perl and existing modules (WWW::Mechanize, HTML::TreeBuilder and XML::Parser) the actual number of lines (and resulting implementational complexity) of the codebase is greatly reduced, as custom code to deal with form submission as well as HTML and XML parsing did not need to be written. This approach also allows the scripts to be slightly less dependent on the exact output format of the sites which are searched. Splitting the retrieval and parse stages also allows for extracting additional information from the search results by modifying the parser and reparsing the results without waiting to retrieve results from the remote databases again.

Results and discussion

The system described above was utilized to generate a list of genes which were then used to select SNPs in a study of childhood-onset Systemic Lupus Erythematosus (SLE). SLE is a debilitating multi-system autoimmune disorder affecting ≈ 0.1% of the North American population. An initial search using a set of 31 keywords (consisting of biological functions and chromosomal regions) selected by expert knowledge returned 6798 genes with various contributions from the three databases used (Table 1). It is important to note that the results obtained are temporally-sensitive; as databases are updated different sets of genes will be returned. In every case a single database did not retrieve all the genes found by other databases, demonstrating the need to query multiple databases. The substantial contribution made by each database in identifying the candidate genes demonstrates that each of the databases is required to maximize the number of candidate genes discovered, though there are likely results which are still not captured by the set of databases queried. As new databases come into prominence, Function2Gene can be extended to query them as well. The top 1204 genes (of which 836 were returned by GeneCards, 699 by Harvester, and 135 by NCBI) were used to select 9412 SNPs. The number of genes to select was dictated by the capacity of the chip (≈ 10,000 SNPs), and a decision to have approximately ten SNPs per gene on average. The choice of SNPs to genotype within the selected genes was based on available information from databases including the Human Haplotype Mapping Project (HapMap) with priority given to SNPs with high heterozygosity in two or more relevant ethnicities and to SNPs representing amino acid coding variants. The selected SNPs were then cross-checked against the accumulated SNP validation test results available at our industrial collaborator (ParAllele Biosciences), an active participant of the International HapMap project.

Table 1 Results of gene selection process

Using the selected SNPs, 251 nuclear families consisting of both parents and the affected child (full trios) were genotyped. The analysis of the genotypes of the 251 trios using Transmission Disequilibrium Test (TDT) followed by False Discovery Rate (FDR) multi-test correction yielded 9 noteworthy genes, that are associated with SLE with FDR less than 0.5; two of these genes were highly significant, with FDR less than 0.05 [10].

Using Bayesian methodologies, the impact of pre-existing knowledge of a disease on the discovery of genes associated with the disease can be increased, as the posterior probability of association with the disease can be modified in accordance with its prior probability as reported by function2gene. The False Positive Report Probability (FPRP) measure is one such method which uses the prior probability of association, which can be calculated from the results of the keyword-based gene selection, to modify the posterior probability of association. Using Bayes' theorem ( P ( A | B ) = P ( B | A ) P ( A ) P ( B ) ) MathType@MTEF@5@5@+=feaagaart1ev2aaatCvAUfKttLearuWrP9MDH5MBPbIqV92AaeXatLxBI9gBaebbnrfifHhDYfgasaacPC6xNi=xH8viVGI8Gi=hEeeu0xXdbba9frFj0xb9qqpG0dXdb9aspeI8k8fiI+fsY=rqGqVepae9pg0db9vqaiVgFr0xfr=xfr=xc9adbaqaaeGaciGaaiaabeqaaeqabiWaaaGcbaGaeiikaGIaemiuaaLaeiikaGIaemyqaeKaeiiFaWNaemOqaiKaeiykaKIaeyypa0tcfa4aaSaaaeaacqWGqbaucqGGOaakcqWGcbGqcqGG8baFcqWGbbqqcqGGPaqkcqWGqbaucqGGOaakcqWGbbqqcqGGPaqkaeaacqWGqbaucqGGOaakcqWGcbGqcqGGPaqkaaGaeiykaKcaaa@43DF@ , FPRP determines the probability of the null hypothesis (no association) being true given a test statistic greater than Zα (that is to say p ≤ α), knowing power (1 - β), the prior probability of association (π), and the probability of the measured data given that the null hypothesis is true (p) [11]:

FPRP = P ( H o  is true | T > Z α ) = p ( 1 − π ) p ( 1 − π ) + ( 1 − β ) π MathType@MTEF@5@5@+=feaagaart1ev2aaatCvAUfKttLearuWrP9MDH5MBPbIqV92AaeXatLxBI9gBaebbnrfifHhDYfgasaacPC6xNi=xI8qiVKYPFjYdHaVhbbf9v8qqaqFr0xc9vqFj0dXdbba91qpepeI8k8fiI+fsY=rqGqVepae9pg0db9vqaiVgFr0xfr=xfr=xc9adbaqaaeGaciGaaiaabeqaaeqabiWaaaGcbaGaeeOrayKaeeiuaaLaeeOuaiLaeeiuaaLaeyypa0JaemiuaaLaeiikaGIaemisaG0aaSbaaSqaaiabd+gaVbqabaGccqqGGaaicqqGPbqAcqqGZbWCcqqGGaaicqqG0baDcqqGYbGCcqqG1bqDcqqGLbqzcqGG8baFcqWGubavcqGH+aGpcqWGAbGwdaWgaaWcbaGaeqySdegabeaakiabcMcaPiabg2da9KqbaoaalaaabaGaemiCaaNaeiikaGIaeGymaeJaeyOeI0IaeqiWdaNaeiykaKcabaGaemiCaaNaeiikaGIaeGymaeJaeyOeI0IaeqiWdaNaeiykaKIaey4kaSIaeiikaGIaeGymaeJaeyOeI0IaeqOSdiMaeiykaKIaeqiWdahaaaaa@5EDE@

One method of calculating prior probability based on the keyword based gene selection is to order the SNPs according to number of times they were returned by different keywords, taking into account the biological relevance of the SNP, and then apply a continuous function such that the higher ranked SNPs have a greater prior probability of association than the lower ranked SNPs, and the sum of the probability of association is the prior estimate of the total number of SNPs in the search believed to be associated with the disease. An alternative method is to order the SNPs in the same manner, and then place them in to different groups, assigning the same prior probabilities to each SNP in a group while controlling the sum of the prior probabilities assigned. For example, assuming 10,000 SNPs, 10 of which are believed to be associated, assign priors of π = 0.025 for the top 1%, 6.25 × 10-3 to the next top 4%, 1.25 × 10-3 to the next top 20%, and 3.33 × 10-4 to the remaining 75%. In this manner the multiple testing effect is controlled while maximizing the effect of the prior available information. Applying FPRP [11] to the results of the TDT test with a prior assumption of 8 associated SNPs yielded 12 noteworthy genes, including all 9 obtained with the FDR corrections, and the same two significant genes [10].

An existing web-based program which is functionally similar to the methodology presented here is the Disease Candidate Gene search of SNPs3d. Using the keywords chosen by SNPs3d for three diseases, diabetes, pancreatic cancer, and Alzheimer disease, we have compared the results obtained by SNPs3d and Function2Gene in Table 2. The majority of high ranking genes returned by SNPs3d are also returned by Function2Gene, but Function2Gene returns a far greater number of genes.

Table 2 Comparison of Function2Gene and SNPs3d

Future advancements of the approach presented here could be made by the use of more powerful literature mining techniques which would reduce (or even eliminate) the need for expert information on the nature, pathology, and biology of the disease to generate a list of keywords and discard spurious results. Such approaches would also reduce the reliance of this approach on the contents of stewarded fields in the databases, enabling novel associations as well as incorrect associations to be discerned. For example, Named Entity Recognition (NER) and Relationship Extraction (RE) could be used in tandem to elucidate connections between diseases and genes directly. NER identifies biologically-relevant entities (like genes and proteins) from literature using techniques such as hidden Markov models and dictionaries. Once entities have been identified, RE can identify the relationship and/or connection between entities using the proximity of entities (and the re-occurrence of entities in close proximity), along with rule base systems and full predicate/subject grammars [12–14]. It would then be possible to walk the relationship tree, using the probabilities between each node of the tree connecting specific genes and a disease (with intervening genes, proteins, and biological pathways in between), and then ordering the resultant genes by the probability of their connection which should be directly proportional to the prior probability of association.

Conclusion

The use of available prior information to decrease the size of the problem space for gene identification in complex polygenic disorders is an as yet underutilized technique. The methodology and the programs presented here use data mining techniques to retrieve from a few databases a number of genes with high prior probability of being associated with the disease. The program also allows to order genes by relevance, thereby allowing the problem space to be greatly reduced, increasing the power of the study and thus increasing the likelihood of successfully finding associated genes.

Availability and requirements

  • Project name: Function2Gene

  • Project homepage: http://rzlab.ucr.edu/function2gene

  • Operating system(s): Platform independent

  • Programming Language: Perl

  • License: GNU GPL v2 or later at your option

Abbreviations

FDR :

False Discovery Rate

FPRP :

False Positive Report Probability

NER :

Named Entity Recognition

RE :

Relationship Extraction

SLE :

Systemic Lupus Erythematosus

SNP :

Single Nucleotide Polymorphism

TDT :

Transmission Disequilibrium Test.

References

  1. MacDonald ME, Ambrose CM, Duyao MP, Myers RH, Lin C, Srinidhi L, Barnes G, Taylor SA, James M, Groot N, MacFarlane H, Jenkins B, Anderson MA, Wexler NS, Gusella JF, Bates GP, Baxendale S, Hummerich H, Kirby S, North M, Youngman S, Mott R, Zehetner G, Sedlacek Z, Poustka A, Frischauf AM, Lehrach H, Buckler AJ, Church D, Doucette-Stamm L, O'Donovan MC, Riba-Ramirez L, Shah M, Stanton VP, Strobel SA, Draths KM, Wales JL, Dervan P, Housman DE, Altherr M, Shiang R, Thompson L, Fielder T, Wasmuth JJ, Tagle D, Valdes J, Elmer L, Allard M, Castilla L, Swaroop M, Blanchard K, Collins FS, Snell R, Holloway T, Gillespie K, Datson N, Shaw D, Harper PS: A novel gene containing a trinucleotide repeat that is expanded and unstable on Huntington's disease chromosomes. The Huntington's Disease Collaborative Research Group. Cell 1993, 72(6):971–83. 10.1016/0092-8674(93)90585-E

    Article  Google Scholar 

  2. Hall JM, Lee MK, Newman B, Morrow JE, Anderson LA, Huey B, King MC: Linkage of early-onset familial breast cancer to chromosome 17q21. Science 1990, 250(4988):1684–9. 10.1126/science.2270482

    Article  CAS  PubMed  Google Scholar 

  3. Risch N, Merikangas K: The future of genetic studies of complex human diseases. Science 1996, 273(5281):1516–7. 10.1126/science.273.5281.1516

    Article  CAS  PubMed  Google Scholar 

  4. Colhoun HM, McKeigue PM, Smith GD: Problems of reporting genetic associations with complex outcomes. Lancet 2003, 361(9360):865–72. 10.1016/S0140-6736(03)12715-8

    Article  PubMed  Google Scholar 

  5. Ioannidis JP, Ntzani EE, Trikalinos TA, Contopoulos-Ioannidis DG: Replication validity of genetic association studies. Nat Genet 2001, 29(3):306–9. 10.1038/ng749

    Article  CAS  PubMed  Google Scholar 

  6. Ioannidis JPA: Why most published research findings are false. PLoS Med 2005, 2(8):e124. 10.1371/journal.pmed.0020124

    Article  PubMed Central  PubMed  Google Scholar 

  7. Nannya Y, Taura K, Kurokawa M, Chiba S, Ogawa S: Evaluation of genome-wide power of genetic association studies based on empirical data from the HapMap project. Hum Mol Genet 2007, 16(20):3494–505. 10.1093/hmg/ddm205

    Article  Google Scholar 

  8. Burkett , Ghadessi , McNeney , Graham , Daley : A comparison of five methods for selecting tagging single-nucleotide polymorphisms. BMC Genetics 2005, 6(Suppl 1):S71. 10.1186/1471-2156-6-S1-S71

    Article  PubMed Central  PubMed  Google Scholar 

  9. Butler , Bishop , Barrett : Strategies for selecting subsets of single-nucleotide polymorphisms to genotype in association studies. BMC Genetics 2005, 6(Suppl 1):S72. 10.1186/1471-2156-6-S1-S72

    Article  PubMed Central  PubMed  Google Scholar 

  10. Jacob CO, Reiff A, Armstrong DL, Myones BL, Silverman E, Klein-Gitelman M, McCurdy D, Wagner-Weiner L, Nocton JJ, Solomon A, Zidovetzki R: Identification of novel susceptibility genes in childhood-onset systemic lupus erythematosus using a uniquely designed candidate gene pathway platform. Arthritis Rheum 2007, 56(12):4164–73. 10.1002/art.23060

    Article  CAS  PubMed  Google Scholar 

  11. Wacholder S, Chanock S, Garcia-Closas M, Ghormli LE, Rothman N: Assessing the probability that a positive report is false: an approach for molecular epidemiology studies. J Natl Cancer Inst 2004, 96(6):434–42.

    Article  PubMed  Google Scholar 

  12. Erhardt RAA, Schneider R, Blaschke C: Status of text-mining techniques applied to biomedical text. Drug Discov Today 2006, 11(7–8):315–25. 10.1016/j.drudis.2006.02.011

    Article  CAS  PubMed  Google Scholar 

  13. Ananiadou S, Kell DB, Tsujii J: Text mining and its potential applications in systems biology. Trends Biotechnol 2006, 24(12):571–9. 10.1016/j.tibtech.2006.10.002

    Article  CAS  PubMed  Google Scholar 

  14. Spasic I, Ananiadou S, McNaught J, Kumar A: Text mining and ontologies in biomedicine: making sense of raw text. Brief Bioinform 2005, 6(3):239–51. 10.1093/bib/6.3.239

    Article  CAS  PubMed  Google Scholar 

Download references

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Raphael Zidovetzki.

Additional information

Authors' contributions

DLA wrote the software described herein as well as the text of this article; COJ and RZ contributed to design of the software and the text of this article. All authors read and approved the final manuscript.

Authors’ original submitted files for images

Below are the links to the authors’ original submitted files for images.

Authors’ original file for figure 1

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

Armstrong, D.L., Jacob, C.O. & Zidovetzki, R. Function2Gene: A gene selection tool to increase the power of genetic association studies by utilizing public databases and expert knowledge. BMC Bioinformatics 9, 311 (2008). https://doi.org/10.1186/1471-2105-9-311

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-9-311

Keywords