Skip to main content
  • Research article
  • Open access
  • Published:

FastTagger: an efficient algorithm for genome-wide tag SNP selection using multi-marker linkage disequilibrium

Abstract

Background

Human genome contains millions of common single nucleotide polymorphisms (SNPs) and these SNPs play an important role in understanding the association between genetic variations and human diseases. Many SNPs show correlated genotypes, or linkage disequilibrium (LD), thus it is not necessary to genotype all SNPs for association study. Many algorithms have been developed to find a small subset of SNPs called tag SNPs that are sufficient to infer all the other SNPs. Algorithms based on the r2 LD statistic have gained popularity because r2 is directly related to statistical power to detect disease associations. Most of existing r2 based algorithms use pairwise LD. Recent studies show that multi-marker LD can help further reduce the number of tag SNPs. However, existing tag SNP selection algorithms based on multi-marker LD are both time-consuming and memory-consuming. They cannot work on chromosomes containing more than 100 k SNPs using length-3 tagging rules.

Results

We propose an efficient algorithm called FastTagger to calculate multi-marker tagging rules and select tag SNPs based on multi-marker LD. FastTagger uses several techniques to reduce running time and memory consumption. Our experiment results show that FastTagger is several times faster than existing multi-marker based tag SNP selection algorithms, and it consumes much less memory at the same time. As a result, FastTagger can work on chromosomes containing more than 100 k SNPs using length-3 tagging rules.

FastTagger also produces smaller sets of tag SNPs than existing multi-marker based algorithms, and the reduction ratio ranges from 3%-9% when length-3 tagging rules are used. The generated tagging rules can also be used for genotype imputation. We studied the prediction accuracy of individual rules, and the average accuracy is above 96% when r2 ≥ 0.9.

Conclusions

Generating multi-marker tagging rules is a computation intensive task, and it is the bottleneck of existing multi-marker based tag SNP selection methods. FastTagger is a practical and scalable algorithm to solve this problem.

Background

A single-nucleotide polymorphism (SNP) is a DNA sequence variation occurring when a single nucleotide--A, T, C, or G--in the genome differs between members of a species (or between paired chromosomes in an individual). SNPs are the most common genetic variations in the human genome, and they are very important for understanding the genetic basis of common diseases. Millions of SNPs are present in human genome. The enormous number of SNPs presents a challenging problem for genome-wide association study. It has been observed that adjacent SNPs are often highly correlated. To reduce genotyping cost, many algorithms have been developed to select a smallest set of SNPs such that all the other SNPs can be inferred from them. The selected SNPs are called tag SNPs.

Existing tag SNP selection methods can be classified into two categories: block based methods [17] and genome-wide approaches [813]. Block based methods rely on a predefined haplotype block structure. The blocks are separated by recombination hot-spots, and there are few recombinations within a block. Thus the haplotypes within a block usually are of low diversity. They then attempt to select a subset of SNPs that can discriminate all common haplotypes within each block. The genome-wide tag SNP selection algorithms do not need to partition the whole chromosome into blocks, and they utilize linkage disequilibrium among nearby SNPs to find tag SNPs. Among the genome-wide approaches, those based on the r2 linkage disequilibrium statistic have gained increasing popularity recently because r2 is directly related to statistical power to detect disease associations [14].

Algorithm LD-select [9] is the first algorithm using the r2 LD statistic to select tag SNPs, and it employs a greedy approach to find tag SNPs. Following it, several other algorithms based on the r2 statistic have been developed. FESTA [12] breaks down large marker sets into disjoint pieces, where exhaustive searches can replace the greedy algorithm, thus leading to smaller tag SNP sets. MultiPop-TagSelect [15] and REAPER [11] apply LD-select to multiple populations. LRTag [13] uses a Lagrangian relaxation algorithm to find tag SNPs across multiple populations. All these algorithms use pairwise LD between SNPs.

Recent studies have shown that multi-marker LD can help further reduce the number of tag SNPs needed [1618], and several algorithms have been developed to select tag SNPs based on multi-marker r2 statistics [1921]. These algorithms find association rules of the form {SNP1, , SNP k } → SNP x , where k ≤ 3, SNP x {SNP1, , SNP k } and the r2 statistic between the left hand side and the right hand side of the rule is no less than a predefined threshold. Their results show that the multi-marker LD model can reduce the number of tag SNPs significantly compared with pairwise algorithms. However, existing multi-marker based algorithms are both time-consuming and memory-consuming. Most of the time is spent on calculating multi-marker r2 statistics. Furthermore, an excess number of multi-marker association rules may be generated when k ≥ 3, which incurs high memory consumption when using these rules to select tag SNPs. It takes hundreds of hours for the MultiTag algorithm [19, 20] to finish on chromosomes containing around 30 k SNPs. The MMTagger algorithm [21] needs several hours to finish, but it consumes more than 1 GB memory. MMTagger cannot work on chromosomes with more than 100 k SNPs when k ≥ 3. In this paper, we propose a multi-marker LD based tag SNP selection algorithm called FastTagger. FastTagger employs several techniques to reduce running time and memory consumption: (1) It merges nearby equivalent SNPs together to reduce the number of multi-marker association rules to be tested. (2) FastTagger prunes redundant rules to reduce the number of rules generated. (3) If there are too many rules, FastTagger uses a heuristics to skip some rules, that is, a rule is skipped if the right hand side of the rule has been covered enough number of times. (4) If the total size of the rules generated exceeds the memory size, FastTagger divides the chromosome into chunks, and then finds tag SNPs within each chunk. This technique can make FastTagger work on chromosomes containing more than 100 k SNPs with as less as 50 MB memory.

Methods

In this section, we first describe how to calculate multi-marker r2 statistics, and then present the FastTagger algorithm. The FastTagger algorithm consists of two steps. In the first step, it generates tagging rules, and in the second step, it uses a greedy approach to select tag SNPs using rules generated in the first step.

Multi-marker tagging rules

Most SNPs have only two alleles, so we consider only bi-allelic SNPs. Given a population, the allele with higher frequency in the population is called major allele, and the allele with lower frequency is called minor allele. We use uppercase letters to denote the major alleles of SNPs, and use lowercase letters to denote the minor alleles. SNPs that are far apart from each other usually are not linked. Here we require that the distance between every pair of SNPs in a rule must not exceed a predefined distance threshold max_dist.

Given k SNPs S = {SNP1, SNP2, , SNP k }, there are 2kpossible haplotypes over the k loci. To calculate the r2 statistic of rule SSNP x , we need to divide the 2khaplotypes into two non-empty groups and map the two groups to the two alleles of SNP x . MultiTag [19] and MMTagger [21] uses different methods to do the mapping.

The one-vs-the-rest model

MultiTag uses this model. There are totally - 2 possible ways to group the 2khaplotypes into two non-empty groups. MultiTag considers only 2kways such that one group contains only one haplotype, and the other group contains all the other haplotypes. It calculates the r2 statistics for all the 2kgroupings, and then select the one with the highest r2 statistic.

The co-occurrence model

MMTagger does the mapping based on the co-occurrences of the alleles of the SNPs on the left hand side and the alleles of the SNP on the right hand side. Let H be a haplotype over the SNP set S on the left hand side, A and a be the two alleles of SNP x on the right hand side, and f(H) be the frequency of H. We use f(HA) to denote the frequency of H and SNP x = A occurring together, and f(Ha) to denote the frequency of H and SNP x = a occurring together. If f (HA) > f (Ha), we map haplotype H to allele A of SNP x , otherwise we map haplotype H to allele a of SNP x . Let H A be the set of haplotypes mapped to allele A, and H a be the set of haplotypes mapped to allele a. We convert SNP set S to a bi-allelic marker with two "alleles" H A and H a . Then we can calculate the r2 statistic between S and SNP x as follows.

(1)

where P(H A ), P (H a ), P (A), P (a) and P (H A A) are the relative frequencies of H A , H a , A, a and H A A respectively.

We implemented both models in the FastTagger algorithm, and let users choose which model they want to use.

If the r2 statistic between S and SNP x is no less than a predefined threshold min_r 2, we say that SNP x can be tagged by S, and R : SSNP x is a tagging rule. With the increase of the size of S, the haplotypes of S partition the whole dataset into finer and finer groups. In an extreme case, every haplotype of S occurs at most once. In this case, the association between haplotypes of S and alleles of SNP x becomes unreliable. To prevent over-fitting, we put a constraint on the size of S. The size of S should not exceeds a predefined threshold max_size.

The r2 statistics can be calculated from phased haplotype data directly. If the SNP data are in the form of unphased genotype data, we can use existing haplotype inference algorithms such as PHASE [22] to convert genotype data into phased haplotype data. We can also estimate k-marker haplotype frequencies directly from genotype data without phasing using the algorithms described in [23, 24]. The second approach is used in algorithm LD-select [9].

Generating tagging rules

To generate all the tagging rules, we need to enumerate all the SNP sets that satisfy the maximum distance constraint and maximum size constraint, and then calculate the r2 statistics between these SNP sets and their nearby SNPs. The search space can be enormously large when the number of SNPs is large. We use several techniques to reduce the number of rules to be tested.

Merging equivalent SNPs

Given two SNPs SNP i and SNP j , if r2(SNP i , SNP j ) = 1, which means that SNP i and SNP j can tag each other perfectly, then we say SNPi and SNPj are equivalent. Two equivalent SNPs always have the same r2 statistics with other SNPs, thus the computation cost of the rules involving them can be shared by merging them together.

For each group of merged equivalent SNPs, a representative SNP is picked to represent this group. FastTagger generates tagging rules between representative SNPs only. The tagging rules generated in this way are called representative tagging rules. One representative tagging rule can actually represent multiple rules. Therefore, by merging equivalent SNPs, we are not only saving computation cost, but also reducing storage overhead.

Note that not every rule represented by a representative tagging rule is valid. Some of them may not satisfy the distance constraint. Equivalent SNPs that are separated by more than max_dist bases cannot appear in the same rule, and merging them together can produce many false rules. To reduce the number of false rules, FastTagger only merges equivalent SNPs that are within a distance of max_dist.

Pruning redundant tagging rules

If a SNP SNP x can be tagged by a SNP set S, then any rule S'SNP x such that S' is a proper superset of S is redundant. FastTagger generates only non-redundant tagging rules to reduce running time and memory consumption, and the definition of non-redundant rules is given as follows:

Definition 1 (Non-redundant tagging rule) Given a rule S → SNP x such that SNP x can be tagged by S, if there does not exist another rule S' → SNP x such that S' is a proper subset of S and SNP x can be tagged by S', then S → SNP x is called a non-redundant tagging rule.

To prune redundant rules, before calculating the r2 statistic between S and SNP x , FastTagger checks whether there exists a subset S' of S such that SNP x can be tagged by S'. FastTagger uses a depth-first strategy to enumerate SNP sets. This search strategy is adopted from a frequent generator mining algorithm [25], and it ensures that all the tagging rules whose left hand side is a subset of S are generated before S is processed.

There can be many tagging rules generated. To speed-up the check operation, FastTagger divides the generated tagging rules into groups based on their right hand side SNP, that is, rules with the same right hand side SNP are in the same group. FastTagger then uses a hash map to index the rules in the same group, and the hashing key is the left hand side of the rules. To check whether SSNP x is redundant, FastTagger searches the hash map of SNP x for the subsets of S. If there is a subset of S in the hash map of SNP x , the rule is redundant; otherwise, the r2 statistic of the rule is calculated.

Skipping rules

Even though merging equivalent SNPs and removing redundant tagging rules can reduce the number of tagging rules significantly, it is still possible that a large number of tagging rules are generated in the first step, which incurs high memory consumption in the second step. FastTagger uses heuristics to further reduce the number of tagging rules generated: if a SNP SNP x occurs at the right hand side of tagging rules enough number of times, then SNP x will not be considered as right hand side candidate in future rule generation. The rationale behind this heuristics is that if a SNP can be tagged by many other SNPs, then during the tag SNP selection process, the SNP has a high probability to be covered by selected tag SNPs.

Selecting tag SNPs using a greedy approach

Finding the smallest set of tag SNPs is computationally expensive. FastTagger uses a greedy approach similar to the one proposed in [9, 19] to find a near optimal set of tag SNPs.

Let C be the set of candidate tag SNPs, T be the set of tag SNPs selected, and V be the set of SNPs not being covered. A SNP is covered if either it is a tag SNP or it can be tagged by some SNP set S such that S T. Initially, C and V contain all the SNPs, and T is empty.

FastTagger first identifies those SNPs that do not appear at the right hand side of any tagging rules, and these SNPs must be selected as tag SNPs. FastTagger puts them into T and remove them from C. These SNPs are also removed from V. For the remaining SNPs in V, if they can be tagged by some SNP set S such that S T, then they are removed from V too.

Next, for each SNP SNP i C, FastTagger finds the set of SNPs in V that are covered by SNP i . A SNP SNP j in V is covered by SNP i if SNP j is not tagged by any subsets of T and there exists a subset S of T such that SNP j is tagged by S {SNP i }.

FastTagger then picks a SNP from C that covers the largest number of SNPs in V as a tag SNP. This newly picked tag SNP is put into T and removed from C. All the SNPs that are covered by it including itself are removed from V. This process is repeated until V is empty, that is, all the SNPs have been covered. In each iteration, in order to find the set of SNPs covered by every candidate tag SNP in C, FastTagger needs to keep the tagging rules in memory. However, the number of rules generated can be very large. It is possible that the total size of tagging rules is too large to fit into the main memory. To solve this problem, we can break the whole chromosome into several chunks such that the rules over every chunk can fit into the main memory. We then select tag SNPs within each chunk.

When selecting tag SNPs within each chunk, only those tagging rules whose SNPs all fall into this chunk are used. To also utilize the rules across chunks, we allow two adjacent chunks to have certain overlap. The length of the overlap is determined by the max_dist threshold. The SNPs in one chunk that are within max_dist bases away from the first SNP of the next chunk are included in the next chunk since they can tag or be tagged by SNPs in the next chunk. FastTagger finds tag SNPs from each chunk from left to right. The tag SNPs selected in the current chunk that also belong to the next chunk will be passed on to the next chunk as tag SNPs. Note that if the distance between two adjacent SNPs is larger than max_dist, then these two SNPs are used as a breakpoint even if there is enough memory. The reason being that if the distance between two adjacent SNPs is larger than max_dist, then the two SNPs cannot tag each other or each other's neighbors.

Using the above method, FastTagger can work on chromosomes containing more than 100 k SNPs with as less as 50 MB memory, while existing algorithm consumes more than 1 GB memory even on chromosomes containing around 30 k SNPs.

Results and Discussion

In this section, we study the performance of FastTagger. We conducted the experiments on a PC with 2.33 Ghz Intel(R) Core(TM) Duo CPU and 3.25 GB memory running Fedora 7. All codes were complied using g++. The source codes and executable of the FastTagger algorithm can be found in Additional file 1. We obtained the datasets from HapMap release 21 http://hapmap.ncbi.nlm.nih.gov/downloads/phasing/2006-07_phaseII/phased/ and project ENCODE http://hapmap.ncbi.nlm.nih.gov/downloads/phasing/2005-03_phaseI/ENCODE/. There are 4 populations and 10 regions in the ENCODE project. Here, we report the overall results on the ten regions for each population. The results on individual regions can be found in Additional file 2. From HapMap release 21, we selected 6 chromosomes: chr1, chr2, chr3, chr19, chr21 and chr22, and used the Han Chinese plus Japanese population. Table 1 shows the number of SNPs with MAF ≥ 5% on the datasets. In all the experiment, we set max_dist to 100 k, and select only those SNPs with MAF ≥ 5%.

Table 1 Datasets.

Comparison with other algorithms

The first experiment is to compare FastTagger with LRTag [13], MMTagger [21] and MultiTag [19]. LRTag uses only pair-wise LD to find tag SNPs, and it has been shown to outperform LD-select and FESTA. Hence we choose LRTag as a representative of the pairwise algorithms. MMTagger and MultiTag both use multi-marker LD to find tag SNPs. We obtained the programs from their respective authors. FastTagger used all the techniques described previously except the skipping rules technique. LRTag takes pre-computed pairwise r2 statistics as input, so the running time of LRTag includes only tag SNP selection time. We report the results at min_r 2 = 0.95 here, results at min_r 2 = 0.9 and min_r 2 = 0.8 can be found in supplementary materials. For all the four algorithms, the selected tag SNPs can cover the whole region of interest.

We first compare FastTagger with LRTag and MultiTag on using pairwise LD to find tag SNPs. Table 2 shows the running time and the number of tag SNPs selected by the three algorithms. The running time is measured in minutes. FastTagger is several times faster than LRTag even though LRTag only needs to pick tag SNPs from pre-computed pairwise r2 statistics while FastTagger needs to compute pairwise r2 statistics as well as selecting tag SNPs. Both algorithms are orders of magnitude faster than MultiTag. Among the three algorithms, LRTag produces the smallest number of tag SNPs, but the difference is very small. Overall, FastTagger generates 0.31% more tag SNPs than LRTag when min_r 2 = 0.95. MultiTag generates 1.77% more tag SNPs than FastTagger when min_r 2 = 0.95. LRTag uses a Lagrangian relaxation algorithm to select tag SNPs instead of a greedy approach used in other algorithms. That is why it generates less tag SNPs than other algorithms.

Table 2 Comparison of running time and number of tag SNPs selected when pairwise LD are used.

Table 3 shows the running time and the number of tag SNP selected by the FastTagger, MMTagger and MultiTag when multi-marker LD are used. We implemented both models in FastTagger, and denote them as Fast-COOC (the co-occurrence model) and Fast-1vsR (the one-vs-the-rest model). MultiTag took extremely long time to finish on the 6 chromosomes when max_size = 3, so its results are not reported on the 6 chromosomes when max_size = 3. When max_size = 2, we divided chr1, chr2 and chr3 into 20 chunks, chr19, chr21 and chr22 into 5 chunks, and then ran MultiTag on each chunk and combined the results. MMTagger terminated abnormally on chr1, chr2 and chr3 when max_size = 3 because too many rules were generated. To solve this problem, we divided the three chromosomes into 10 chunks, and then ran MMTagger on each chunk and combined the results together.

Table 3 Comparison of running time and number of tag SNPs selected when multi-marker LD are used.

Table 3 shows that the multi-marker model can reduce the number of tag SNPs significantly under the same min_r 2 threshold compared with the pairwise model (Table 2). The number of tag SNPs is reduced by more than 30% when max_size = 2. When max_size = 3, the number of tag SNPs is reduced by more than 40%. However, calculating multi-marker r2 statistics is much more expensive than computing pairwise r2. FastTagger is more than 10 times slower when max_size = 2, and hundreds of times slower when max_size = 3.

On ENCODE regions, FastTagger and MMTagger take similar time to finish when max_size = 2; when max_size = 3, FastTagger is 2-3 times faster than MMTagger. On the 6 chromosomes, FastTagger is 2-6 times faster than MMTagger. Both algorithms are orders of magnitude faster than MultiTag. The number of tag SNPs selected by FastTagger under the co-occurrence model is smaller than that selected by MMTagger and MultiTag.

Table 4 shows the maximum memory usage of FastTagger and MMTagger with max_r 2 = 0.95 and max_size = 3. MMTagger consumes much more memory than FastTagger, that is why it cannot work on large chromosomes such as chr1, chr2 and chr3 when max_size = 3.

Table 4 Memory usage of FastTagger and MMTagger.

Table 3 also shows that the co-occurrence model generates smaller set of tag SNPs than the one-vs-the-rest model. The reason being that more rules are generated under the co-occurrence model as shown in Table 5. When max_size = 2, the two models generate similar number of rules, so does the number of tag SNPs. When max_size = 3, the co-occurrence model generates 3-4 times more rules than the one-vs-the-rest model, hence it can use much less tag SNPs to tag all the other SNPs. The co-occurrence model also consumes much more memory when max_size = 3 as shown in the last two columns of Table 5.

Table 5 The number of tagging rules generated under the two models using the FastTagger algorithm (min_r 2 = 0.9).

The effectiveness of the techniques used in FastTagger

This experiment studies the effectiveness of the techniques used by FastTagger in reducing running time and memory consumption. We used the co-occurrence model in this experiment because it generates more rules and is more memory demanding than the one-vs-the-rest model. The baseline FastTagger algorithm in this experiment uses two techniques as in the previous experiment: merging equivalent SNPs and pruning redundant tagging rules. The running time and memory consumption of the baseline algorithm, and the number of tag SNPs and tagging rules generated by the baseline algorithm on chr19, chr21 and chr22 when max_size = 3 and min_r 2 = 0.95 is shown in Table 6.

Table 6 Baseline algorithm: merging equivalent SNPs and pruning redundant rules, no skipping rules.

The "#Rep SNPs" column in Table 1 shows the number of representative SNPs after merging equivalent SNPs using window size of 100 k. The number of SNPs is reduced by around a half. We have tried to use a larger window size to merge equivalent SNPs, and the results show that larger window sizes do not achieve much further reduction. The reduction in number of SNPs greatly reduces the number of rules to be tested. Table 7 shows the performance of FastTagger without merging equivalent SNPs. Without merging equivalent SNPs, FastTagger generates an excessive number of tagging rules, e.g., around 20 times more than that of merging equivalent SNPs, thus taking much longer time and consuming much more memory. There is also a slight increase in the number of tag SNPs selected.

Table 7 Baseline algorithm WITHOUT merging equivalent SNPs.

Table 8 shows the performance of FastTagger without pruning redundant rules. Pruning redundant rules can reduce the number of rules generated by 3 times, thus reducing the maximum memory usage of FastTagger by more than a half. Although identifying redundant rules can reduce the search space, it also incurs some overhead. Hence the running time of FastTagger does not decrease when it uses the pruning redundant rules technique.

Table 8 Baseline algorithm WITHOUT pruning redundant rules.

Table 9 shows performance of FastTagger when the skipping rules technique is used. Here if a SNP appears in the right hand side no less than 5 times, the SNP will not be considered as right hand side any more. By using this technique, the number of rules generated is reduced by more than a half. The running time and memory usage of FastTagger is also reduced. The number of tag SNPs selected increases slightly, but it is still smaller than that generated by the MMTagger algorithm.

Table 9 Baseline algorithm with skipping rules: if a SNP appears in the right hand side no less than 5 times, the SNP will not be considered as right hand side any more.

We also tested FastTagger under a memory constraint. The maximum memory can be used by FastTagger is limited to 50 MB. We used the three large chromosomes, chr1, chr2 and chr3, in this experiment. All the three chromosomes contain more than 100 k SNPs. Table 10 shows even with as less as 50 MB memory, FastTagger can still work on chromosomes with 100 k SNPs. There is only a tiny increase in its running time and the number of tag SNPs generated.

Table 10 Performance of Fast-COOC when memory size is restricted to 50 MB (max_size = 3, min_r 2 = 0.95)

Portability and prediction accuracy

Multi-marker models group combinations of the alleles on the left hand side into two groups, and then map these two groups to the two alleles on the right hand side. Compared with pairwise model, multi-marker models are more prone to over-fitting. Here we use three populations in HapMap--the Han Chinese population (HCB), the Japanese population (JPT) and the Caucasian population(CEU)--to study the portability and prediction accuracy of tagging rules of different lengths. We use chr19 in this experiment. We first generate tagging rules from one population, and then calculate the r 2 statistics and prediction accuracy of these rules in the other populations. The prediction accuracy of a rule is defined as the proportion of alleles of the SNP on the right hand side that are correctly predicted by the alleles of the SNPs on the left hand side. The results reported below are results when rules are generated from individuals in the Han Chinese population and are evaluated using individuals in the other two populations. In all three populations, we consider only those SNPs with MAF ≥ 5%.

Figures 1, 2 and 3 show the distribution of the r2 values of the rules generated from the Han Chinese population using the two multi-marker models in the three populations. Table 11 shows average r2 of the rules in the three populations. For all the three lengths, the average r2 of the rules in the Japanese population and the Caucasian population is lower than that in the Chinese population. The decrease of length-2 and length-3 rules is more significant than that of length-1 rules, which indicates that longer rules are more prone to over-fitting than shorter rules for both models. The r2 values of the rules become much lower in the Caucasian population than that in the Japanese population, which is consistent with the genetic differences between the three populations.

Table 11 Average r2 and predication accuracy of rules of different length on three populations.
Figure 1
figure 1

Portability of length-1 rules. The rules are generated from the Han Chinese population with min_r 2 = 0.9, and they are then validated on the other two datasets as well.

Figure 2
figure 2

Portability of length-2 rules. The rules are generated from the Han Chinese population with min_r 2 = 0.9.

Figure 3
figure 3

Portability of length-3 rules. The rules are generated from the Han Chinese population with min_r 2 = 0.9.

The same trend is observed on prediction accuracy (Figure 4, 5 and 6). Even though the rules are generated from the Chinese population, their accuracy in the Japanese population is always above 80%. Even for length-3 rules, 94% rules generated using the co-occurrence model have an accuracy no less than 90%, and 97.4% rules generated using the one-vs-the-rest model have an accuracy no less than 90% in the Japanese population. The average accuracy of length-3 rules is above 96% for both models in the Japanese population(Table 11). The average accuracy of the rules in the Caucasian population is lower than that in the Japanese population, but it is still above 91% even for length-3 rules. We believe that if we use individuals from the same population to do the testing, the average r2 and accuracy should be even higher. As for the two models, the number of length-2 rules generated by the two models is similar, while the co-occurrence model generates about 3.5 times more length-3 rules than the one-vs-the-rest model. The average r2 and accuracy of the length-3 rules generated using the one-vs-the-rest model is higher than that generated using the co-occurrence model on both populations. However, since much less rules are generated under the one-vs-the-rest model, the one-vs-the-rest model needs more tag SNPs to cover all the other SNPs than the co-occurrence model as shown in Table 3.

Figure 4
figure 4

Prediction accuracy of length-1 rules. The rules are generated from the Han Chinese population with min_r 2 = 0.9.

Figure 5
figure 5

Prediction accuracy of length-2 rules. The rules are generated from the Han Chinese population with min_r 2 = 0.9.

Figure 6
figure 6

Prediction accuracy of length-3 rules. The rules are generated from the Han Chinese population with min_r 2 = 0.9.

Conclusions

In this paper, we have presented an efficient algorithm called FastTagger for genome-wide tag SNP selection using multi-marker LD. FastTagger uses several techniques to reduce running time and memory consumption. Our experiment results show that FastTagger is several times faster than existing tag SNP selection algorithms using multi-marker models, and it consumes much less memory at the same time, which makes FastTagger can work on chromosomes containing more than 100 k SNPs where existing algorithms using multi-marker models usually fail. FastTagger also select less tag SNPs than existing algorithms using multi-marker LD. Our experiment results also show that merging equivalent SNPs together is the most effective technique in reducing running time and memory consumption.

We implemented two multi-marker models in the FastTagger algorithm. The one-vs-the-rest model generates rules with higher average r2 and higher average accuracy than the co-occurrence model under the same parameter settings. However, it generates much less length-3 rules than the co-occurrence model, thus requiring more tag SNPs to cover all the other SNPs.

We compared the portability and prediction accuracy of rules of different length. The results show that shorter rules have better portability and higher prediction accuracy than longer rules. Nevertheless, length-3 rules generated from the Chinese population can still achieve an average accuracy of 96% on the Japanese population for both models.

In our experiments, we calculate prediction accuracy for individual rules. When we use these rules to make predictions on unobserved SNPs, it is possible that one SNP can be predicted by multiple rules, and the prediction of these rules may conflict with one another. In our future work, we will study how to resolve the conflicts and make consensus predictions for unobserved SNPs.

Availability and requirements

  • Project name: Pattern spaces & data mining algorithms for pharmacogenomics

  • Project home page: http://www.comp.nus.edu.sg/~wongls/projects/snp-analysis/index.html

  • Grant: A*STAR SERC PSF 072-101-0016

  • Operating system(s): Linux or Windows

  • Programming language: C++

  • Other requirements: none

  • License: FreeBSD for academic use

  • Any restrictions to use by non-academics: Licence needed

References

  1. Johnson G: Haplotype tagging for the identification of common disease genes. Nature Genetics 2001, 29: 233–237. 10.1038/ng1001-233

    Article  CAS  PubMed  Google Scholar 

  2. Patil N: Blocks of limited haplotype diversity revealed by high-resolution scanning of human chromosome 21. Science 2001, 294(5547):1719–1723. 10.1126/science.1065573

    Article  CAS  PubMed  Google Scholar 

  3. Gabriel SB, Schaffner SF, Nguyen H, Moore JM, Roy J, Blumenstiel B, Higgins J, DeFelice M, Lochner A, Faggart M, Liu-Cordero SN, Rotimi C, Adeyemo A, Cooper R, Ward R, Lander ES, Daly MJ, Altshuler D: The Structure of Haplotype Blocks in the Human Genome. Science 2002, 296(5576):2225–2229. 10.1126/science.1069424

    Article  CAS  PubMed  Google Scholar 

  4. Avi-Itzhak HI, Su X, de la Vega FM: Selection of Minimum Subsets of Single Nucleotide Polymorphisms to Capture Haplotype Block Diversity. Pacific Symposium on Biocomputing 2003, 466–477.

    Google Scholar 

  5. Sebastiani P: Minimal haplotype tagging. Proc Natl Acad Sci 2003, 100: 9900–9905. 10.1073/pnas.1633613100

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  6. Thompson D, Stram D, Goldgar D, Witte JS: Haplotype Tagging Single Nucleotide Polymorphisms and Association Studies. Human Heredity 2003, 56: 48–55. 10.1159/000073732

    Article  PubMed  Google Scholar 

  7. Zhang K, Qin ZS, Liu JS, Chen T, Waterman MS, Sun F: Haplotype Block Partitioning and Tag SNP Selection Using Genotype Data and Their Applications to Association Studies. Genome Research 2004, 14: 908–916. 10.1101/gr.1837404

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  8. Halldorsson B: Optimal haplotype block-free selection of tagging SNPs for genome-wide association studies. Genome Research 2004, 14: 1633–1640. 10.1101/gr.2570004

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  9. Carlson C: Selecting a maximally informative set of single-nucleotide polymorphisms for association analyses using linkage disequilibrium. The American Journal of Human Genetics 2004, 74: 106–120. 10.1086/381000

    Article  CAS  PubMed  Google Scholar 

  10. Halperin E: Tag SNP selection in genotype data for maximizing SNP prediction accuracy. Bioinformatics 2005, 21: 195–203. 10.1093/bioinformatics/bti1021

    Article  Google Scholar 

  11. Magi R, Kaplinski L, Remm M: The whole genome tagSNP selection and transferability among HapMap populations. Pacific Symposium on Biocomputing 2006, 11: 535–543. full_text

    Google Scholar 

  12. Qin Z, Gopalakrishnan S, Abecasis G: An efficient comprehensive search algorithm for tagSNP selection using linkage disequilibrium criteria. Bioinformatics 2006, 22(2):220–225. 10.1093/bioinformatics/bti762

    Article  CAS  PubMed  Google Scholar 

  13. Liu L, Wu Y, Lonardi S, Jiang T: Efficient algorithms for genome-wide tagSNPs selection across populations via linkage disequilibrium criterion. Proc. of 6th Annual International Conference on Computational Systems Bioinformatics 2007, 67–78. full_text

    Chapter  Google Scholar 

  14. Pritchard JK, Przeworski M: Linkage Disequilibrium in Humans: Models and Data. Am J Hum Genet 2001, 69: 1–14. 10.1086/321275

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  15. Howie B: Efficient selection of tagging single-nucleotide polymorphisms in multiple populations. Human Genetics 2006, 120: 58–68. 10.1007/s00439-006-0182-5

    Article  PubMed  Google Scholar 

  16. Bakker PD, Yelensky R, Pe'er I, Gabriel SB, Daly MJ, Altshuler1 D: Efficiency and power in genetic association studies. Nature Genetics 2005, 37: 1217–1223. 10.1038/ng1669

    Article  PubMed  Google Scholar 

  17. Pe'er I: Evaluating and improving power in whole-genome association studies using fixed marker sets. Nature Genetics 2006, 38: 663–667. 10.1038/ng1816

    Article  PubMed  Google Scholar 

  18. Huang YT, Chao KM: A new framework for the selection of tag SNPs by multimarker haplotypes. Journal of Biomedical Informatics 2008, 41(6):953–961. 10.1016/j.jbi.2008.04.003

    Article  CAS  PubMed  Google Scholar 

  19. Hao K: Genome-wide selection of tag SNPs using multiple-marker correlation. Bioinformatics 2007, 23(23):3178–3184. 10.1093/bioinformatics/btm496

    Article  CAS  PubMed  Google Scholar 

  20. Hao K, Di X, Cawley S: LdCompare: rapid computation of single and multiple marker r2and genetic coverage. Bioinformatics 2007, 23(2):252–254. 10.1093/bioinformatics/btl574

    Article  CAS  PubMed  Google Scholar 

  21. Wang WB, Jiang T: A New Model of Multi-Marker Correlation for Genome-wide Tag SNP Selection. Proc. of the International Conference on Genome Informatics 2008.

    Google Scholar 

  22. Stephens M, Smith N, Donnelly P: A new statistical method for haplotype reconstruction from population data. The American Journal of Human Genetics 2001, 68: 978–989. 10.1086/319501

    Article  CAS  PubMed  Google Scholar 

  23. Hill W: Estimation of linkage disequilibrium in randomly mating populations. Heredity 1974, 33(2):229–239. 10.1038/hdy.1974.89

    Article  CAS  PubMed  Google Scholar 

  24. Hill W: Tests for association of gene frequencies at several loci in random mating diploid populations. Bioinformatics 1975, 31(4):881–888.

    CAS  Google Scholar 

  25. Liu G, Li J, Wong L: A new concise representation of frequent itemsets using generators and a positive border. Knowl Inf Syst 2008, 17: 35–56. 10.1007/s10115-007-0111-5

    Article  CAS  Google Scholar 

Download references

Acknowledgements

This work was supported in part by an A*STAR grant SERC 072 101 0016 (Liu, Wong) and an NUS NGS scholarship (Wang).

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Guimei Liu.

Additional information

Authors' contributions

Guimei Liu designed and implemented the FastTagger algorithm, and wrote this manuscript. Yue Wang participated in discussion of the proposed method and conducted the experiments. Limsoon Wong gave advice on the design of the algorithm and the manuscript. All authors read and approved the final manuscript.

Electronic supplementary material

12859_2009_3523_MOESM1_ESM.ZIP

Additional file 1: File "FastTagger.zip" contains the source codes and executables of the FastTagger program, both for Linux and Windows. Please read file "FastTagger.readme" on how to use the program. (ZIP 141 KB)

12859_2009_3523_MOESM2_ESM.XLS

Additional file 2: File "FastTagger-sup.xls" contains additional experiment results, and it is a Microsoft Excel file. (XLS 210 KB)

Authors’ original submitted files for images

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://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

Liu, G., Wang, Y. & Wong, L. FastTagger: an efficient algorithm for genome-wide tag SNP selection using multi-marker linkage disequilibrium. BMC Bioinformatics 11, 66 (2010). https://doi.org/10.1186/1471-2105-11-66

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-11-66

Keywords