Skip to main content

PSEUDOMARKER 2.0: efficient computation of likelihoods using NOMAD

Abstract

Background

PSEUDOMARKER is a software package that performs joint linkage and linkage disequilibrium analysis between a marker and a putative disease locus. A key feature of PSEUDOMARKER is that it can combine case-controls and pedigrees of varying structure into a single unified analysis. Thus it maximizes the full likelihood of the data over marker allele frequencies or conditional allele frequencies on disease and recombination fraction.

Results

The new version 2.0 uses the software package NOMAD to maximize likelihoods, resulting in generally comparable or better optima with many fewer evaluations of the likelihood functions.

Conclusions

After being modified substantially to use modern optimization methods, PSEUDOMARKER version 2.0 is more robust and substantially faster than version 1.0. NOMAD may be useful in other bioinformatics problems where complex likelihood functions are optimized.

Background

PSEUDOMARKER [1] is a package that genomically localizes trait-predisposing loci by performing statistical tests using a putative disease locus and a series of markers. Genomic localization of genes that impact some phenotype is based on tests of independence of disease phenotypes from genotypes of a genome-spanning set of markers. Many “association tests” try to test directly for statistical relationships between disease phenotypes and marker genotypes directly by sampling large numbers of cases and controls or very small families. Such tests confound the statistical relationship between marker alleles and the genotypes at a putative nearby disease locus with the statistical relationship between the same markers and the phenotype. This confounding is unavoidable for case-control data because of the limited degrees of freedom, but these relationships can and should be modeled explicitly when analyzing more complex and heterogeneous pedigree sets.

PSEUDOMARKER performs a full likelihood analysis under a specified model of the relationship between disease phenotypes and underlying genotypes. In pedigree data, one can test for genetic linkage as the preferential cosegregation of a marker or a haplotype with disease family-by-family; the marker genotype that cosegregates with the disease can differ from family to family. In either pedigree data or in case-control data, one can test for linkage disequilibrium (LD) between a marker and a putative disease locus as the preferential co-occurrence of a specific genotype at the marker with a genotype at the disease locus. By using a full likelihood model, PSEUDOMARKER can combine analysis of case-control (singletons) data and pedigree data of arbitrary size in one unified testing framework. We directly analyze linkage and LD among marker and disease genotypes, integrating over all possible genotypes at the putative two-allele disease-predisposing locus, for all individuals under an explicit model of the genotype-phenotype relationship.

PSEUDOMARKER version 1 maximizes several likelihood functions [1] using a generalized pattern search (GPS) algorithm [2] implemented in a custom version of the ILINK [3] program. Previously, we showed that PSEUDOMARKER, using GPS likelihood estimates, performed well in detecting linkage and LD, outperforming several competing genetic analysis programs as measured by the power or false positive rate [4].

The running time of PSEUDOMARKER depends on the number of times the optimization algorithm evaluates any likelihood function. Each evaluation involves computation over one or, often, several pedigrees for fixed values of certain parameters that may include the recombination fraction and marker allele frequencies. ILINK computes these likelihoods using a peeling method that is a generalization of the Elston-Stewart algorithm [5]. Computation time is highly dependent on the pedigree structure and the number of untyped founders.

A reduction in the number of likelihood function evaluations would allow more samples, larger and more complex pedigrees, or a greater density of markers to be analyzed in a reasonable amount of time. Although the GPS method [2] was more robust than the older line search method implemented in all previous versions of ILINK, we decided that the number of likelihood evaluations might be reduced by using instead a newer algorithm known to outperform GPS in some other optimization problems.

Mesh Adaptive Direct Search (MADS) [6] is a framework for a class of derivative-free algorithms designed to supersede the GPS method. MADS is conceptually similar to GPS, but uses a richer set of search directions, resulting in better theoretical convergence properties. The NOMAD software package [7] is a high-quality, C++ open-source implementation of MADS algorithms in use in universities and companies around the world [811]. NOMAD is robust [12] and has a wide range of functionality, including handling of general nonlinear constraints, biobjective optimization, parallelism, and the restriction of variables to integer or boolean values [13].

We describe PSEUDOMARKER 2.0, which uses a customized version of ILINK that uses NOMAD to maximize likelihoods. We show that NOMAD is more effective at finding optima than GPS, while requiring fewer evaluations of the likelihood function.

Implementation

PSEUDOMARKER

PSEUDOMARKER uses parametric inheritance models and exact likelihood computations to evaluate the evidence for linkage and/or LD between a putative trait locus and a set of genotyped markers. When applying extreme parametric models, it yields statistics that are stochastically equivalent to several popular model-free methods if applied to simple family structures [14], for instance mother-father-child triads, case-control samples, or affected sib-pairs. PSEUDOMARKER, however, has substantial advantages over the simpler nonparametric methods when analyzing more complex family structures [1, 4].

PSEUDOMARKER takes as input a pedigree file (including pedigree structures and genotypes) in LINKAGE format [15], a common format used by many analysis packages, such as the well-known PLINK package [16]. The map file that describes the names and positions of the markers may be supplied using any one of a variety of formats, including the format used by PLINK. The format of the map file must be explicitly specified as a command-line option. Many more details on the PSEUDOMARKER data input format can be found in the online documentation (http://www.helsinki.fi/~tsjuntun/pseudomarker/, under Tutorial).

PSEUDOMARKER uses likelihood ratio tests to compare four models describing all possible combinations of having or not having linkage and having or not having LD. Marker allele frequencies are parameters of all four likelihood functions. For likelihoods allowing for LD, the marker allele frequencies are allowed to vary conditional on which trait-locus allele is on the same haplotype. For likelihoods allowing for linkage, the probability with which recombination occurs between trait and marker loci (the recombination fraction) is a parameter. For each likelihood function, all parameters are estimated jointly.

Estimating the parameters is a nonlinear constrained optimization problem. ILINK uses the pedigree structure, genomic data and the inheritance model to compute each likelihood function exactly as a nonlinear function of its free parameters. Marker allele frequencies and conditional allele frequencies are probabilities, and as such are constrained to lie between 0 and 1. Each set of frequencies must also sum to 1. The recombination fraction, if a parameter, is constrained to lie between the 0 and 0.5, because larger values of the recombination fraction are not biologically meaningful; a recombination fraction of 0.5 between two loci indicates that the loci segregate independently.

The main programs of PSEUDOMARKER are primarily intended to be used for fine mapping a linkage region as has been done, for example, in Kyöstilä et al.[17], and for testing candidate genes as has been done in Deo et al.[18]. PSEUDOMARKER may be used for genome-wide data, but for larger or more complex problems using current (circa 2014) technology requires the use of a computational cluster to complete the genome-wide analysis in reasonable time. For most purposes, if the data set contains a large number of families, we instead recommend two-stage analysis approach. In the first stage, a filter based on the haplotype-based haplotype relative risk (HHRR) method [19] and less computationally expensive classical linkage analysis with loose thresholds is used to identify markers likely to benefit from PSEUDOMARKER analysis. The second stage performs full PSEUDOMARKER analysis on these candidate markers. A program twostage.py is provided in the PSEUDOMARKER distribution to perform the two-stage analysis. A description of the two-stage method and instructions are available on the PSEUDOMARKER website (under Tutorial/Two Stage Analyses).

NOMAD

NOMAD [7] implements several variants of the MADS framework for constrained derivative-free optimization. In its usual mode, it searches for an optimum by generating trial points along orthogonal directions starting from the incumbent best solution [20]. The set of directions used in this step is far richer than the set of directions searched by GPS; formally, the set of normalized directions is dense in the unit sphere. The use of such a rich set of search directions ensures stronger theoretical convergence properties, and leads to a more efficient algorithm in practice [6]. The MADS framework is flexible enough to allow the use of heuristics that investigate additional trial points to improve practical convergence. Heuristics available in NOMAD include Variable Neighborhood Search (VNS) metaheuristic [21] and the construction and exploration of quadratic models of the objective function and of the constraints [12]. The VNS metaheuristic was not used in our tests, but quadratic models are used by NOMAD in its default mode, and were used in our tests.

To optimize likelihoods, NOMAD proposes to ILINK values for its free parameters, trial points in the MADS framework. ILINK attempts to evaluate the likelihood function at these trial points. NOMAD explicitly handles bound constraints, and so will not, for instance, suggest a negative probability. The constraints that allele frequencies sum to 1 was handled by another of NOMAD’s features, the extreme barrier approach. For any set of marker allele frequencies, one frequency may be represented implicitly, its value obtained by subtracting the sum of the other frequencies from 1. NOMAD is not aware of the implicit frequencies. For a trial point suggested by NOMAD, it is possible for an implicit frequency to have an infeasible value: a negative value or a value greater than one. In such a circumstance, the extreme barrier takes effect. ILINK informs NOMAD that the trial point is infeasible, and NOMAD ignores the point, effectively treating it as if it had an infinitely bad objective value.

ILINK was modified substantially to use NOMAD instead of GPS. We used NOMAD in its library mode [13]. Using NOMAD in this mode involves setting up internal ILINK data structures prior to invoking NOMAD, providing NOMAD with code (a C++ class) that NOMAD uses as a callback to provide ILINK with trial points, and converting between NOMAD’s representation of the variables and ILINK’s, ultimately invoking an internal ILINK routine named likelihood. NOMAD was run in a mode that uses 2n orthogonal search directions, where n represents the number of optimization variables. NOMAD was stopped when the minimum poll size, a NOMAD parameter, was less than 10-4, indicating that for the next set of trial points, the largest change to any parameter to the likelihood functions would be at most 10-4.

The interface between PSEUDOMARKER and ILINK was modified to enable better performance, but these changes do not affect the file formats or command-line syntax for PSEUDOMARKER. NOMAD is used by default. Compiled executable files are available from the PSEUDOMARKER web site (see Availability and requirements). These files include and will use the NOMAD solver without requiring any additional downloads or user intervention. In accordance with the LGPL version 3.0, downloaded archives also contain files allowing users to rebuild the necessary executables using a different, possibly modified, but application programming interface (API) compatible, version of NOMAD.

Computational experiments

Table 1 gives a brief summary of the 14 data sets that we analyzed in this project. Twelve of these data sets were used to compare the overall number of likelihood function evaluations required by PSEUDOMARKER to complete the analyses of specific markers when using GPS to the number of evaluations needed to complete the analyses of the same markers when using NOMAD. Two additional data sets were used to compare processor time used by PSEUDOMARKER version 1.06d (the last release with major version 1) to that used by PSEUDOMARKER 2.0, to complete realistic genomic scans of chromosome 22. Table 2 shows pedigree statistics of the data sets; more detailed statistics are shown in Additional file 1: Tables S1–S3. Pedigree, phenotype, and marker statistics were computed using PedStats [22].

Table 1 Summary of all data sets
Table 2 Data set properties

The 12 test data sets used to compare iteration counts were selected to include difficult cases, including such factors as real life pedigree structures, realistic amounts of missing data, and large multi-generational families. Data sets contained both biallelic markers and multiallelic microsatellites. The real data sets were from Finnish gene mapping studies on which TH and JDT were collaborators [24, 27], while the simulated data sets were generated as part of the Ph.D. dissertation of TH, some of which have been analyzed in prior publications [1, 29]. Simulated genotype data were generated using a modified version of SLINK [34, 35]; parameters used for the simulations are shown in Additional file 2: Tables S4 and S5.

Some data sets were observed to present difficult maximization problems for the GPS while the previous version of the PSEUDOMARKER package was being developed. The x.linked test set [28] was particularly interesting because it was x-linked, had multiple alleles, and most of the data were triads, and still maximization was quite time-consuming.

All 12 sets used to compare iteration counts were analyzed under assumptions of both the dominant and recessive extreme inheritance models described in [14] and all four likelihood functions used by PSEUDOMARKER, testing for linkage and/or LD. Six were also analyzed under more biologically plausible inheritance models. We optimized likelihoods using either GPS as previously described [1] or NOMAD [7].

To test running time on real data, we used two data sets: a subset of data from the Framingham Heart Study (FHS) [30] version 18 as deposited in NCBI’s dbGaP, and subset of data from the FinnTwin12 study [31, 32]. The FinnTwin12 data were recently used in a joint analysis of linkage and LD [33]. Usage of the FHS data for this purpose is covered by an IRB-approved protocol (Ivan Ovcharenko, Principal Investigator; AAS, Associate Investigator). The FinnTwin12 study was approved by the Ethics Committee of Helsinki University Hospital District and individuals in the study gave their written informed consent.

For the FHS study, phenotypes for heart disease were used only from individuals who had consented to have their data used for general research usage (GRU). Using in-house programs, we extracted data on pedigrees each of which includes at least two individuals who were phenotyped for heart disease. Data were filtered with PLINK [16] to remove most inconsistent markers and to keep only markers such that r2<0.6 pairwise. A few inconsistent markers that were not detected by PLINK, were detected by PedCheck [36] and also removed. The removal of inconsistent markers is needed here to do comparisons with PSEUDOMARKER version 1. One of several user-interface improvements in PSEUDOMARKER version 2 is the implementation of a command line option –skipmendelerrors to skip over markers with inconsistent genotypes. Pedigree and marker statistics for the filtered pedigree and marker data are shown in Table 2 and Additional file 1: Table S2. Markers were divided into 44 groups of approximately 50 markers and all groups were processed in parallel separately using PSEUDOMARKER version 1 and using PSEUDOMARKER version 2 on a cluster of Linux machines.

The FinnTwin2 data contained phenotype and genotype information from 226 individuals in 171 pedigrees (sibships and triads). Some individuals in the study were twins; for monozygotic twins, only one twin was genotyped in the data analyzed [33]. Pedigree statistics for the filtered pedigree and marker data are shown in Table 2 and Additional file 1: Table S2. Data for all 8502 markers were analyzed in a single run of either PSEUDOMARKER version 1 or PSEUDOMARKER version 2 on a Linux machine. Each analysis was repeated ten times and reported running time is the mean of the time for ten analyses.

Results and discussion

The numbers of likelihood function evaluations for each test set, summed over all markers, all models, and all maximized likelihood functions, are shown in Table 3. NOMAD is superior in terms of function evaluations to GPS on all test sets. As we discuss below, NOMAD is invoked somewhat differently from GPS on the same optimization problems, which contributes to the improvement.

Table 3 Number of function evaluations used by GPS and NOMAD

We chose as our figure of merit the number of likelihood evaluations because that separates the likelihood evaluation of each PSEUDOMARKER hypothesis and gives an “apples-to-apples” comparison of GPS and NOMAD. Nevertheless, the figure of merit that matters more to users of PSEUDOMARKER is the running time for combined evaluation of all hypotheses. The reduction in number of likelihood evaluations does convert in a linear manner to reduction in running time, but the constants depend on the problem instance. For example, on the full PSEUDOMARKER run of the FHS problem, running time decreased from 88 hours and 24 minutes to 21 hours and 45 minutes, a 4.1-fold reduction. For FinnTwin12, the improvement in running time was even more substantial, decreasing from 38 hours and 5 minutes to 6 hours and 8 minutes, a 6.2-fold reduction.

In preliminary tests, we observed NOMAD was more robust than GPS in finding an optimum (data not shown). There were no obvious patterns to distinguish the problem instances on which NOMAD found a better likelihood value than did GPS. Because NOMAD was more robust, we experimented with invoking NOMAD less often. For GPS, it was often helpful to retry a given optimization problem, using the solution previously returned from GPS as the new starting point because that would sometimes lead to the identification of a better likelihood value. The purpose of these restarts is to encourage convergence to a global optimum, and to reduce the probability that GPS would stall at a non-optimal point. The restarts were unnecessary with NOMAD. Nor was it helpful to start NOMAD at several different initial estimates, as was done with GPS. The counts in Table 3 are counts for invoking NOMAD once to solve each optimization problem, whereas GPS was invoked as described in [1].

Despite the fewer calls to the optimization algorithm, the optimum returned by NOMAD was usually better than the one from GPS. Of the 288 optimization problems we tried based on the first 12 test sets, NOMAD found an assignment to the variables that yielded a log likelihood that was at least 0.005 worse than the value reported by GPS only seven times (see Table 4 and Additional file 3: Table S6). In contrast, NOMAD reported 68 objective values better by at least 0.005 than the values reported by GPS. We considered differences less than 0.005 in the log likelihood to be insubstantial, as such differences would change log of the likelihood ratio by at most 0.01. NOMAD returned answers with objective value more than 0.5 better than GPS 21 times, with the largest difference being 28, a shockingly large value. In contrast, the most GPS improved the objective value over NOMAD was 0.1.

Table 4 Changes in objective function

Among the 55 cases for which the objective value changed by at least 0.005 in the numerator in the likelihood ratio test, there were two in which the p-value for the test against hypothesis H0 improved by at least one order of magnitude (Additional file 3: Table S6). In the majority of cases, both programs find similar p-values, though GPS requires more iterations and computer time. Since tests are based on likelihood ratios, which code attains a lower p-value depends on whether a better maximum is found for the numerator or denominator of the likelihood ratio. However, when the p-values differ, p-values produced by NOMAD better supported by the underlying statistical model, whereas p-values produced by GPS-based code represent a failure to maximize the likelihoods.

In [1], we reported that one of the difficulties in GPS is the sum constraint that the allele frequencies have to sum to 1.0. The editor suggested that an alternative method to handle the sum constraints is the generalized logit transformation, which has been shown to work in some other settings [37]. In the PSEUDOMARKER application, we believe that the generalized logit would perform poorly because the maximum likelihood estimate of some probabilities is precisely zero, and this is a frequent occurrence. Under the logit transformation, NOMAD would be tasked with finding a minimizer that had a finite objective value, but for which one of the variables was negatively infinite. This case breaks the assumptions of the theoretical convergence theory of NOMAD [6], and poses practical problems for the implementation.

NOMAD is a constrained code, and is designed to handle bounds on the variables, so working in probability space poses no great problem to it, and we believe this is one of the reasons NOMAD performs better than GPS in the PSEUDOMARKER setting.

Conclusions

The new PSEUDOMARKER 2.0 has been released (see Availability and requirements) and it uses NOMAD [7] to maximize likelihoods. The new version usually provides better or comparable answers, while using far fewer evaluations of the likelihood functions. Several of the most prominent developers of pedigree analysis methods recognized decades ago that the optimization problems that arise in genetic analysis of pedigrees can be difficult to solve and can benefit from new methods [3840]. We have shown in this study that MADS methods are more effective than previous methods on the optimization problems that arise in usage of PSEUDOMARKER. Therefore, our work is novel in two major respects. First, in the context of PSEUDOMARKER and pedigree likelihood optimization, the shorter analysis time and increased robustness allow analysis to be attempted on larger data sets and more complex family structures. Second, we introduce a generally useful optimization package, NOMAD, to the bioinformatics and genetic epidemiology communities, where NOMAD may find additional usages.

Availability and requirements

Project name: PSEUDOMARKER 2.0

Project home page: http://www.helsinki.fi/~tsjuntun/pseudomarker/

Operating system(s): GNU/Linux Intel 64-bit architecture

Programming language: C and C++

Other requirements: none

License: PSEUDOMARKER is a binary distribution with registration required. (PSEUDOMARKER from this site without registration.) NOMAD is distributed with PSEUDOMARKER under terms of the LGPL 3.0.

Any restrictions to use by non-academics: no

Abbreviations

LD:

linkage disequilibrium

GPS:

generalized pattern search

MADS:

mesh adaptive direct search

FHS:

Framingham Heart Study.

References

  1. Hiekkalinna T, Schäffer AA, Lambert B, Norrgrann P, Göring HHH, Terwilliger JD: PSEUDOMARKER: a powerful program for joint linkage and/or linkage disequilibrium analysis on mixtures of singletons and related individuals. Hum Hered. 2011, 71 (4): 256-266. 10.1159/000329467.

    Article  PubMed Central  PubMed  Google Scholar 

  2. Dennis Jr JE, Torczon V: Direct search methods on parallel machines. SIAM J Optim. 1991, 1 (4): 448-474. 10.1137/0801027.

    Article  Google Scholar 

  3. Cottingham RW, Idury RM, Schäffer AA: Faster sequential genetic linkage computations. Am J Hum Genet. 1993, 53 (1): 252-263.

    PubMed Central  PubMed  Google Scholar 

  4. Hiekkalinna T, Göring HHH, Lambert B, Weiss KM, Norrgrann P, Schäffer AA, Terwilliger JD: On the statistical properties of family-based association tests in datasets containing both pedigrees and unrelated case-control samples. Eur J Hum Genet. 2012, 20 (2): 217-223. 10.1038/ejhg.2011.173.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  5. Elston RC, Stewart J: A general model for the genetic analysis of pedigree data. Hum Hered. 1971, 21 (6): 523-542. 10.1159/000152448.

    Article  PubMed  CAS  Google Scholar 

  6. Audet C, Dennis Jr JE: Mesh adaptive direct search algorithms for constrained optimization. SIAM J Optim. 2006, 17 (1): 188-217. 10.1137/040603371.

    Article  Google Scholar 

  7. Le Digabel S: Algorithm 909: NOMAD: Nonlinear optimization with the MADS algorithm. ACM Trans Math Softw. 2011, 37 (4): 1-15.

    Article  Google Scholar 

  8. Stracquadanio G, Romano V, Nicosia G: Semiconductor device design using the BiMADS algorithm. J Comput Phys. 2013, 242: 304-320.

    Article  Google Scholar 

  9. Torres R, Bès C, Chaptal J, Hiriart-Urruty JB: Optimal, environmentally-friendly departure procedures for civil aircraft. J Aircraft. 2011, 48: 11-22. 10.2514/1.C031012.

    Article  Google Scholar 

  10. Aasi J, Abadie J, Abbott BP, Abbott R, Abbott TD, Abernathy M, Accadia T, Acernese F, Adams C, Adams T, Addesso P, Adhikari R, Affeldt C, Agathos M, Agatsuma K, Ajith P, Allen B, Allocca A, Amador Ceron E, Amariutei D, Anderson SB, Anderson WG, Arai K, Araya MC, Ast S, Aston SM, Astone P, Atkinson D, Aufmuth P, et al: Einstein@Home all-sky search for periodic gravitational waves in LIGO S5 data. Phys Rev D. 2013, 87: 042001-

    Article  Google Scholar 

  11. Alarie S, Audet C, Garnier V, Le Digabel S, Leclaire LA: Snow water equivalent estimation using blackbox optimization. Pac J Optim. 2013, 9 (1): 1-21.

    Google Scholar 

  12. Conn AR, Le Digabel S: Use of quadratic models with mesh adaptive direct search for constrained black box optimization. Optim Methods Softw. 2013, 28 (1): 139-158. 10.1080/10556788.2011.623162.

    Article  Google Scholar 

  13. Audet C, Le Digabel S, Tribes C: NOMAD user guide. Tech. Rep. G-2009-37, Les cahiers du GERAD 2009. [http://www.gerad.ca/NOMAD/Downloads/user_guide.pdf],

  14. Göring HHH, Terwilliger JD: Linkage analysis in the presence of errors IV: joint pseudomarker analysis of linkage and/or linkage disequilibrium on a mixture of pedigrees and singletons when the mode of inheritance cannot be accurately specified. Am J Hum Genet. 2000, 66 (4): 1310-1327. 10.1086/302845.

    Article  PubMed Central  PubMed  Google Scholar 

  15. Terwilliger JD, Ott J: Handbook of Human Genetic Linkage. 1994, Baltimore: JHU Press

    Google Scholar 

  16. Purcell S, Neale B, Todd-Brown K, Thomas L, Ferreira MA, Bender D, Maller J, Sklar P, de Bakker PI, Daly MJ, Sham PC: PLINK: a tool set for whole-genome association and population-based linkage analyses. Am J Hum Genet. 2007, 81 (3): 559-575. 10.1086/519795.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  17. Kyöstilä K, Cizinauskas S, Seppala EH, Suhonen E, Jeserevics J, Sukura A, Syrja P, Lohi H: ASEL1Lmutation links a canine progressive early-onset cerebellar ataxia to the endoplasmic reticulum-associated protein degradation (ERAD) machinery. PLoS Genet. 2012, 8 (6): e1002759-10.1371/journal.pgen.1002759.

    Article  PubMed Central  PubMed  Google Scholar 

  18. Deo AJ, Huang YY, Hodgkinson CA, Xin Y, Oquendo MA, Dwork AJ, Arango V, Brent DA, Goldman D, Mann JJ, Haghighi F: A large-scale candidate gene analysis of mood disorders: evidence of neurotrophic tyrosine kinase receptor and opioid receptor signaling dysfunction. Psychiatr Genet. 2013, 23 (2): 47-55. 10.1097/YPG.0b013e32835d7028.

    Article  PubMed  CAS  Google Scholar 

  19. Terwilliger JD, Ott J: A haplotype-based ’haplotype relative risk’ approach to detecting allelic associations. Hum Hered. 1992, 42 (6): 337-346. 10.1159/000154096.

    Article  PubMed  CAS  Google Scholar 

  20. Abramson M, Audet C, Dennis Jr JE, Le Digabel S: OrthoMADS: A deterministic MADS instance with orthogonal directions. SIAM J Optim. 2009, 20 (2): 948-966. 10.1137/080716980.

    Article  Google Scholar 

  21. Audet C, Béchard V, Le Digabel S: Nonsmooth optimization through mesh adaptive direct search and variable neighborhood search. J Global Optim. 2008, 41 (2): 299-318. 10.1007/s10898-007-9234-1.

    Article  Google Scholar 

  22. Wigginton JE, Abecasis GR: PEDSTATS: descriptive statistics, graphics and quality assessment for gene mapping data. Bioinformatics. 2005, 21 (16): 3445-3447. 10.1093/bioinformatics/bti529.

    Article  PubMed  CAS  Google Scholar 

  23. Pajukanta P, Terwilliger JD, Perola M, Hiekkalinna T, Nuotio I, Ellonen P, Parkkonen M, Hartiala J, Ylitalo K, Pihlajamäki J, Porkka K, Laakso M, Viikari J, Ehnholm C, Taskinen MR, Peltonen L: Genomewide scan for familial combined hyperlipidemia genes in finnish families, suggesting multiple susceptibility loci influencing triglyceride, cholesterol, and apolipoprotein B levels. Am J Hum Genet. 1999, 64 (5): 1453-1463. 10.1086/302365.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  24. Wessman M, Kallela M, Kaunisto MA, Marttila P, Sobel E, Hartiala J, Oswell G, Leal SM, Papp JC, Hämäläinen E, Broas P, Joslyn G, Hovatta I, Hiekkalinna T, Kaprio J, Ott J, Cantor RM, Zwart JA, Ilmavirta M, Havanka H, Färkkilä M, Peltonen L, Palotie A: A susceptibility locus for migraine with aura, on chromosome 4q24. Am J Hum Genet. 2002, 70 (3): 652-662. 10.1086/339078.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  25. Kaunisto MA, Tikka PJ, Kallela M, Leal SM, Papp JC, Korhonen A, Hämäläinen E, Harno H, Havanka H, Nissilä M, Säkö E, Ilmavirta M, Kaprio J, Färkkilä M, Ophoff RA, Palotie A, Wessman M: Chromosome 19p13 loci in Finnish migraine with aura families. Am J Med Genet B Neuropsychiatr Genet. 2005, 132B: 85-89. 10.1002/ajmg.b.30082.

    Article  PubMed  Google Scholar 

  26. Tikka-Kleemola P, Artto V, Vepsäläinen S, Sobel EM, Räty S, Kaunisto MA, Anttila V, Hämäläinen E, Sumelahti ML, Ilmavirta M, Färkkilä M, Kallela M, Palotie A, Wessman M: A visual migraine aura locus maps to 9q21-q22. Neurology. 2010, 74 (15): 1171-1177. 10.1212/WNL.0b013e3181d8ffcb.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  27. Ekelund J, Hovatta I, Parker A, Paunio T, Varilo T, Martin R, Suhonen J, Ellonen P, Chan G, Sinsheimer JS, Sobel E, Juvonen H, Arajärvi R, Partonen T, Suvisaari J, Lönnqvist J, Meyer J, Peltonen L: Chromosome 1 loci in Finnish schizophrenia families. Hum Mol Genet. 2001, 10 (15): 1611-1617. 10.1093/hmg/10.15.1611.

    Article  PubMed  CAS  Google Scholar 

  28. Karjalainen MK, Huusko JM, Ulvila J, Sotkasiira J, Luukkonen A, Teramo K, Plunkett J, Anttila V, Palotie A, Haataja R, Muglia LJ, Hallman M: A potential novel spontaneous preterm birth gene, AR, identified by linkage and association analysis of X chromosomal markers. PLoS ONE. 2012, 7 (12): e51378-10.1371/journal.pone.0051378.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  29. Hiekkalinna T: On the superior power of likelihood-based linkage disequilibrium mapping in large multiplex families compared to population based case-control designs. PhD thesis,. University of Helsinki, Helsinki, Finland; 2012,

  30. Larson MG, Atwood LD, Benjamin EJ, Cupples LA, D’Agostino RB, Fox CS, Govindaraju DR, Guo CY, Heard-Costa NL, Hwang SJ, Murabito JM, Newton-Cheh C, O’Donnell CJ, Seshadri S, Vasan RS, Wang TJ, Wolf PA, Levy D: Framingham Heart Study 100K project: genome-wide associations for cardiovascular disease outcomes. BMC Med Genet. 2007, 8 (Suppl 1): S5-10.1186/1471-2350-8-S1-S5.

    Article  PubMed Central  PubMed  Google Scholar 

  31. Kaprio J, Pulkkinen L, Rose RJ: Genetic and environmental factors in health-related behaviors: studies on Finnish twins and twin families. Twin Res. 2002, 5 (5): 366-371. 10.1375/136905202320906101.

    Article  PubMed  Google Scholar 

  32. Kaprio J: Twin studies in Finland 2006. Twin Res Hum Genet. 2006, 9 (6): 772-777. 10.1375/twin.9.6.772.

    Article  PubMed  Google Scholar 

  33. Törnwall O, Silventoinen K, Hiekkalinna T, Perola M, Tuorila H, Kaprio J: Identifying flavor preference subgroups. Genetic basis and related eating behavior traits. Appetite. 2014, 75C: 1-10.

    Article  Google Scholar 

  34. Weeks DE, Ott J, Lathrop GM: SLINK: a general simulation program for linkage analysis. Am J Hum Genet. 1990, 47 (Suppl): A204-

    Google Scholar 

  35. Schäffer AA, Lemire M, Ott J, Lathrop GM, Weeks DE: Coordinated conditional simulation with SLINK and SUP of many markers linked or associated to a trait in large pedigrees. Hum Hered. 2011, 71 (2): 126-134. 10.1159/000324177.

    Article  PubMed Central  PubMed  Google Scholar 

  36. O’Connell JR, Weeks DE: PedCheck: a program for identification of genotype incompatibilities in linkage analysis. Am J Hum Genet. 1998, 63 (1): 259-266. 10.1086/301904.

    Article  PubMed Central  PubMed  Google Scholar 

  37. Jones BL, Nagin DS, Roeder K: A SAS procedure based on mixture models for estimating developmental trajectories. Sociol Method Res. 2001, 29 (3): 374-393. 10.1177/0049124101029003005.

    Article  Google Scholar 

  38. Elston RC, Lange E, Namboodiri KK: Age trends in human chiasma frequencies and recombination fractions. II. Method for analyzing recombination fractions and applications to the ABO:nail-patella linkage. Am J Hum Genet. 1976, 28 (1): 69-76.

    PubMed Central  PubMed  CAS  Google Scholar 

  39. Ott J: Counting methods (EM algorithm) in human pedigree analysis: linkage and segregation analysis. Ann Hum Genet. 1977, 40 (4): 443-454. 10.1111/j.1469-1809.1977.tb02031.x.

    Article  PubMed  CAS  Google Scholar 

  40. Weeks DE, Lange K: Trials, tribulations, and triumphs of the EM algorithm in pedigree analysis. IMA J Math Appl Med Biol. 1989, 6 (4): 209-232. 10.1093/imammb/6.4.209.

    Article  PubMed  CAS  Google Scholar 

Download references

Acknowledgements

This research is supported in part by the Intramural Research Program of the NIH and NLM (EMG and AAS); by AFOSR grant FA9550-12-1-0198 (CA and SLD); by MimoMICS (FP7-HEALTH-2012, European Commission) and a FiDiPro grant from the Academy of Finland (JDT and TH); by BioSHaRE-EU, Paulo Foundation (TH); and by NIH grants MH084995 and AG036469 (JDT). Markus Perola, Tiina Paunio, Teppo Varilo, Mikko Kallela, Aarno Palotie, Mari Kaunisto, Verneri Anttila, Maija Wessman, Outi Törnwall, Hely Tuorila, Jaakko Kaprio, Mikko Hallman, and Minna Karjalainen are acknowledged for providing pedigree structures for testing. Thanks to John Dennis for stimulating this collaboration.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Edward Michael Gertz.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

EMG modified FASTLINK to use NOMAD, performed all the experiments, except the test of TwinFinn12, wrote the first draft of the manuscript, and coordinated the manuscript revision. EMG and TH updated PSEUDOMARKER to use NOMAD. TH collected test sets, wrote test scripts, performed the test of TwinFinn12, updated the software documentation, and edited the manuscript. CA and SLD helped integrate NOMAD with FASTLINK, suggested tests, and edited the manuscript. JDT suggested tests and edited the manuscript. AAS conceived the project, helped integrate NOMAD with FASTLINK, suggested tests, prepared the FHS data from dbGaP, and edited the manuscript. All authors read and approved the final manuscript.

Electronic supplementary material

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

Gertz, E.M., Hiekkalinna, T., Digabel, S.L. et al. PSEUDOMARKER 2.0: efficient computation of likelihoods using NOMAD. BMC Bioinformatics 15, 47 (2014). https://doi.org/10.1186/1471-2105-15-47

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-15-47

Keywords