Literature DB >> 22500001

optiCall: a robust genotype-calling algorithm for rare, low-frequency and common variants.

T S Shah1, J Z Liu, J A B Floyd, J A Morris, N Wirth, J C Barrett, C A Anderson.   

Abstract

MOTIVATION: Existing microarray genotype-calling algorithms adopt either SNP-by-SNP (SNP-wise) or sample-by-sample (sample-wise) approaches to calling. We have developed a novel genotype-calling algorithm for the Illumina platform, optiCall, that uses both SNP-wise and sample-wise calling to more accurately ascertain genotypes at rare, low-frequency and common variants.
RESULTS: Using data from 4537 individuals from the 1958 British Birth Cohort genotyped on the Immunochip, we estimate the proportion of SNPs lost to downstream analysis due to false quality control failures, and rare variants misclassified as monomorphic, is only 1.38% with optiCall, in comparison to 3.87, 7.85 and 4.09% for Illuminus, GenoSNP and GenCall, respectively. We show that optiCall accurately captures rare variants and can correctly account for SNPs where probe intensity clouds are shifted from their expected positions.
AVAILABILITY AND IMPLEMENTATION: optiCall is implemented in C++ for use on UNIX operating systems and is available for download at http://www.sanger.ac.uk/resources/software/opticall/.

Entities:  

Mesh:

Year:  2012        PMID: 22500001      PMCID: PMC3371828          DOI: 10.1093/bioinformatics/bts180

Source DB:  PubMed          Journal:  Bioinformatics        ISSN: 1367-4803            Impact factor:   6.937


1 INTRODUCTION

Burgeoning whole-genome and whole-exome sequencing projects are likely to require large-scale microarray-based follow-up studies. Already, custom arrays, such as Metabochip and Immunochip, utilize SNPs identified through population-based sequencing efforts such as 1000 genomes to better survey loci known to underpin variation across related phenotypes (Trynka ). Typically, the allelic probes on these custom arrays have undergone less stringent quality control (QC) compared to those that make it onto mass-produced GWAS arrays. This drop in probe quality, in addition to a greater focus on low-frequency and rare variants (those with minor allele frequencies 0.5–5% and <0.5%, respectively; The 1000 Genomes Project Consortium, 2010) presents many problems for existing genotype-calling algorithms. Genotype-calling algorithms use normalized measures of DNA binding to allele specific probes to ascertain the genotype of an individual at a given SNP. As an example, a wild-type homozygous genotype at a particular SNP would have a high intensity value for the wild-type allelic probe, and little or no intensity for the alternative allelic probe. A heterozygous sample would have intermediate intensities for both probes. Existing callers vary in both the statistical models they apply, and how they utilize the intensity data across individuals and SNPs. Illumina's proprietary genotype-calling software, GenCall, uses a custom clustering algorithm that encompasses several biological heuristics to determine genotypes from intensity clouds obtained by gathering all individuals at a single SNP. If less than three well-defined genotype clusters are observed, GenCall uses a neural network model to estimate the location and shape of the undefined clusters. GenCall is designed to work on Illumina arrays and, being based on a pretrained neural network, its performance on a new dataset is dependent on how close the new data matches the data used to train the network. Another commonly used genotype-calling algorithm, Illuminus (Teo ), also designed for Illumina arrays, again clusters intensity data across samples on a per SNP basis, using an unsupervised clustering method based on a mixture model of Student's t-distributions. This unsupervised approach removes the need for a called training set. However, low-frequency SNPs and/or small sample sizes can result in poorly defined clusters and inaccurate genotype calls due to the small number of rare allele observations. Giannoulatou ) discovered within-sample intensity data also tended to cluster into three distinct genotype groups. On the basis of this observation, they created GenoSNP, a within-sample genotype-calling algorithm. Clustering within sample can be advantageous for rare variants and small sample sizes, as three well-defined clusters are always observed. A drawback of the approach is that intensity variation between SNPs is not accounted for, resulting in inaccurate genotype calls for SNPs where intensity clusters are shifted from their expected positions. We have developed optiCall, a novel genotype-calling algorithm that uses both within and across sample intensity data to accurately ascertain genotypes from across the minor allele frequency spectrum. In the following sections, we describe optiCall and compare its output to that from existing algorithms using 4537 samples from the 1958 British Birth Cohort (Power and Elliott, 2006) genotyped on the Immunochip, an Illumina iSelect HD custom array (Cortes and Brown, 2011).

2 METHODS

2.1 Data

Illumina uses a six degree of freedom affine transformation to normalize data for channel-dependent background and global intensity differences. The data input to the algorithm have a normalized intensity point x=(x(1),x(2)) for each sample and SNP on the array, indicating the binding strength of the sample's DNA to the probes for each of the two alleles being interrogated at the SNP.

2.2 Creating the within and across sample prior

optiCall first takes a random subset S of intensity values from the data (by default |S| is the minimum of 50 000 and the size of the dataset). Every element in S is a (x(1), x(2)) normalized intensity point for a random sample at a random SNP. This subset, of both within and across sample intensities, is used to create a data-derived prior distribution on the intensity space, defining regions of high probability for each genotype class. A four-class mixture model of Student's t-distributions is used to model the data, with a class corresponding to each genotype and one class to catch outliers of unknown genotype. So for each element x in S, there is a latent genotype variable g∈{1, 2, 3, 4} and the joint probability density function (pdf) of (x, g) under the mixture model is given by and for the entire subset S×G={(x, g):x∈S}: where π are the class probabilities, such that the π sum to 1, I is the indicator function, and each p is the pdf of a Student's t-distribution with location parameter μ, covariance Σ and scale parameter v, for simplicity all represented by the parameter vector θ. The model is fitted to the data by inferring values for the π, μ, Σ to maximize the likelihood of the data by an expectation maximization (EM) procedure (Dempster ). The parameters μ, Σ are fixed for the unknown class [by default (0,0) and 100×I2, where I2 is the 2 × 2 identity matrix] so that the probability density is even over parameter space, and outliers are assigned unknown. The v for all classes are also fixed at 1. When performing inference, initial values for the μ, Σ of the genotype classes are obtained from a run of the k means ++ clustering algorithm for k equal to three (Arthur and Vassilvitskii, 2007), and all the π are each set to 0.25. Using the EM algorithm, the initial parameter values are altered so that they maximize the log-likelihood of the data. The unknown class is treated like the genotype classes during inference, except for its mean and covariance parameters remaining fixed. The EM algorithm obtains a (possibly local) maximum for the log-likelihood by alternating between an expectation (E) step, and a maximization (M) step. For the E-step, the expected value of the log likelihood is calculated, with respect to the latent variable given the current values of the parameters. Next the M-step finds the parameters to maximize this expected log-likelihood, the parameter values are updated, and the algorithm moves to the next iteration of EM steps. Equation (2) is the expression for the likelihood of the data, and the log-likelihood expression is shown in (3). with the latent variable z being the value of I(g=i) The z are updated on the E-step, being set to the posterior probabilities of class membership—given the current estimates for θ, and the θ are set on the M-step. The derivation of the latent variable and parameter update equations of the EM algorithm for a mixture of t-distributions can be found in McLachlan and Peel (2000). The EM algorithm is halted after 30 iterations, but stops early if genotype calls are unchanged for more than three consecutive iterations, and final parameter values are subsequently taken. The across sample and SNP clustering happens only once, and the resulting mixture model provides prior information in subsequent per SNP, across sample, clustering steps.

2.3 Genotype calls across samples with prior information across SNPs

optiCall next goes through the intensity data SNP-wise, gathering all sample intensities at a SNP, and clustering with another mixture model of Student's t-distributions. The mixture model again has four classes, one for each genotype, and an additional one for outliers. However, instead of maximizing the likelihood, a prior is incorporated on the model parameter vector θ, based on the clustering of S, and the posterior is maximized to get the Maximum A-Posteriori estimate for the parameters θ. Thus, ignoring the term p(S×G) which is unaffected by the choice of θ, optiCall aims to find the θ maximizing: which in our case is shown in (5): For the three genotype classes (i=1, 2, 3), we put a Normal–Wishart prior distribution on the location and precision matrix of each genotype's t-distribution: where α, β, γ, S are hyperparameters assigned values based on the clustering step from (2.2). The α are set to the optimal μ obtained from the results of the clustering in (2.2); similarly the S are set to the inverse of the optimal Σ. The β are set to 1, and the γ to 100. For the unknown class (i=4), the μ, Σ are fixed as in (2.2), meaning the prior distribution p4 (μ4, Σ4) essentially assigns all its probability density at these values of μ, Σ. The v similarly are set to 1 for all classes apart from the heterozygous class, which is set to 1.3. To infer the values of the π, μ, Σ we use a modified EM procedure, with starting points for the π set to their optimum values found in (2.2). Initial values for μ and Σ are also their optimal equivalents from (2.2) but multiplied (element-wise) by the scaling factors: to account for SNP specific intensity shifts. and are the mean and SD of the intensity data of the current SNP, μ is the optimal μ of the heterozygous class from (2.2), is the SD of the random subset S from (2.2), and bracketed subscripts show the allele (1 or 2) over which the mean or SD is calculated, for points (x(1),x(2)). The modification to the EM procedure occurs at the E-step when calculating the expected value of z. If the maximum genotype posterior probability for an intensity point p(g=i|x) is above 0.9, according to the model inferred in (2.2), the expected value for z is calculated using these genotype posteriors, instead of the values of π in the current clustering. This way, points with highly confident genotype posteriors by the model in (2.2), but possibly forming a sparse cluster, can still guide the current clustering (Fig. 1b). The EM algorithm runs for 15 iterations but stops early if genotype calls are unchanged for more than three consecutive iterations.
Fig. 1.

Calling a SNP with optiCall. In (a) intensity data is taken from all samples at the SNP. Then, using a data-derived (within and across sample) prior, and adjusting class membership probabilities based on the prior in an EM procedure (b and c), a mixture model of Student's t-distributions is fitted to the data (d)

Calling a SNP with optiCall. In (a) intensity data is taken from all samples at the SNP. Then, using a data-derived (within and across sample) prior, and adjusting class membership probabilities based on the prior in an EM procedure (b and c), a mixture model of Student's t-distributions is fitted to the data (d) Once the optimal parameter values are inferred, genotype posterior probabilities for a data point from the model are calculated according to (7). The μ, Σ and v are from the results of the current SNP-wise clustering, while π′ are the genotype posterior probabilities for x calculated using v and optimum values for π, μ, Σ from (2.2). Using π′ in this way helps in clustering rare variants, which may be only a few points, but falling in a high probability region according to (2.2). Genotypes are called for any points with a class posterior probability of at least 0.7 (by default), with those falling below this threshold called unknown.

2.4 Measuring clustering quality and reclassifying poorly clustered SNPs

optiCall uses deviation from Hardy–Weinberg equilibrium (HWE) as an indicator of clustering quality. A χ2 test is used to test HWE unless sample size is small (<50 expected counts of any genotype, assuming HWE or allele counts of <100 for either allele), in which case an exact test is used (Wigginton ). SNPs with a HWE P-value less than a given threshold (P<5×10−15 by default) are deemed to be poorly called. optiCall attempts to improve the genotype calls at these SNPs by again running a Student's t-based mixture model, but this time omitting the SNP and sample-wise prior. This rescue step is primarily implemented to give better genotype calls at SNPs where the genotype intensity clouds lie outside of the expected regions defined by the within and across sample prior. The statistical model is as described in (1) and (2), with the intensity values first transformed according to (8), to improve calling of SNPs with shifted intensities (Teo ). Inference is as in (2.2), by the EM algorithm. The ν are fixed at 1 for all classes except the heterozygous class, which is fixed at 1.3. The values of μ, Σ for the unknown class are fixed with identical values to (2.2). All four classes have initial class probabilities set to 0.25, and for the three genotype classes initial covariance matrices are set to (2c/N)×I2 with c the cost (Arthur and Vassilvitskii, 2007) of a k means ++ clustering on the data, and N the number of intensity points. The transformation of intensities has accounted for shifts, and so location parameters of the two homozygous classes can be initialized to the extremes of y(1), and the heterozygous class will then fall somewhere in between, thus the μ are initialized to where the min/max are taken over a filtered version of the intensity data, with the lowest 1% of untransformed intensity values in the x(1) direction and lowest one percent in the x(2) direction removed. is the mean of the y over the second axis, and k is a shift parameter for the location of the heterozygous class, that takes one of three values, 0.45, 0.5 or 0.55, resulting in three sets of initial values dependent on the value of k. For each set of starting values, the EM algorithm is run until genotype calls are concordant for two consecutive iterations, and the optimal parameters are chosen to be the final values with the highest likelihood. Genotype calls are made using genotype posterior probabilities [using the π inferred from this step unlike (2.3)] with a 0.7 call threshold. By default, SNPs that fail the HWE test subsequent to this step have all genotypes called unknown. In our experiments, we have found the occurrence of the rescue step, and the subsequent chances of a successful rescue, to vary with the quality of the dataset. On a number of Immunochip datasets, rescue steps tended to occur on between 3 and 10% of SNPs, with 30–50% being successful.

3 RESULTS

To test the performance of optiCall, and compare it to existing algorithms, we used data from 4537 individuals from the 1958 British Birth Cohort who were genotyped using the Immunochip, an Illumina iSelect HD custom array designed for deep replication of autoimmune disease genome-wide association study results and fine-mapping within 184 known autoimmune disease loci (Trynka ). Genotypes were called at 192 402 SNPs using optiCall, GenCall, Illuminus and GenoSNP. Default parameters were used when running each of the algorithms. The genotype data from each algorithm underwent a simple QC protocol to reflect a typical association study. SNPs failed QC if they had a call rate <98% or HWE P<10−5. Table 1 shows the QC results for each caller across the dataset.
Table 1.

Summary statistics of calling and QC results on 192 402 Immunochip autosomal SNPs

CallerMean call rate (%)Number with call rate <98%Number with HWE P<10−5Number of QC failsNumber of unique QC passesNumber of unique QC fails
Illuminus99.446311809610 26323052852
GenoSNP97.6319 43215 23922 5723108505
GenCall96.0113 861941315 6651561454
optiCall97.067440721010 006796168

Call rate is defined as the proportion of genotype calls for a SNP assigned a genotype other than unknown. The QC threshold is set at a call rate of <98% or <10−5 HWE P-value. A unique QC pass/fail is a SNP that passed/failed QC uniquely to the given caller.

Summary statistics of calling and QC results on 192 402 Immunochip autosomal SNPs Call rate is defined as the proportion of genotype calls for a SNP assigned a genotype other than unknown. The QC threshold is set at a call rate of <98% or <10−5 HWE P-value. A unique QC pass/fail is a SNP that passed/failed QC uniquely to the given caller. Calls from Illuminus and GenoSNP produce the most discordant results at QC (with 5157 and 8815 unique QC passes and fails, respectively) whereas GenCall and optiCall appear to have more overlapping QC outcomes with other callers.

3.1 SNPs passing/failing QC

In an association study, if many SNPs fail QC because of poor genotype calling, potential casual variants may be missed. However, too many calls incorrectly passing QC would result in increased false-positive associations, and more overheads in subsequent follow-up and replication. To assess clustering quality and accuracy, 600 unique QC pass SNPs and 600 unique QC fail SNPs were selected at random and manually called using a modified version of Evoker (Morris ). All manual calling was carried out blind to genotype calls from any of the algorithms. The 1200 SNPs were split into four subsets, each manually called by a different person. Any SNPs deemed difficult to call were blind re-called by all four human callers, and the consensus genotypes were taken forward. Manually called genotypes were then compared to those from each of the genotype-calling algorithms, classifying SNPs passing QC for both the algorithm and manual call set as true-pass (TP) SNPs, and SNPs failing QC in the manual calls but passing QC for the given algorithm as false-pass (FP) calls. Similarly, SNPs failing QC for both the manual calls and the algorithm were classified as true-fail (TF) SNPs, while false-fail (FF) SNPs fail QC for the given algorithm only. Sensitivity and specificity were then calculated for each of the algorithms (Table 2).
Table 2.

Comparison of QC passes and failures across 1200 manually called SNPs

CallerTPFPTFFalse-failSensitivity/specificity
Illuminus5742601342320.71/0.34
GenoSNP196133816100.24/0.97
GenCall519333612870.64/0.92
optiCall650923021560.81/0.77
Manual806039401.00/1.00

TP, manual pass and algorithm pass. FP, manual fail and algorithm pass. TF, manual fail and algorithm fail. False-fail = manual pass and algorithm fail.

Comparison of QC passes and failures across 1200 manually called SNPs TP, manual pass and algorithm pass. FP, manual fail and algorithm pass. TF, manual fail and algorithm fail. False-fail = manual pass and algorithm fail. For the sampled data optiCall yielded the highest sensitivity, but with a lower specificity compared to GenCall and GenoSNP. GenoSNP's sensitivity was significantly lower than its counterparts, as was Illuminus' specificity. Anecdotally, many of GenoSNP's FFs occurred at SNPs where intensity data were shifted from the expected positions, a drawback of the within-individual clustering approach. R-squared values (Pearson correlation coefficient where genotypes are placed on a 0, 1, 2 scale and unknown genotypes are assigned the numerical mean genotype) to the manual calls for TP SNPs were high across all three callers (0.995 for Illuminus, 0.983 for GenoSNP, 0.990 for GenCall and optiCall), suggesting that SNPs passing QC are called accurately by all algorithms.

3.2 Missed rare variants

Genetic association studies are increasingly focusing on identifying rare variation underlying disease susceptibility (Manolio ). To investigate how well each of the algorithms captures such variants, we randomly selected 600 SNPs that were monomorphic in one algorithm but had a minor allele frequency between 4×10−4 and 0.01 in at least another two. Manual calling was carried out as described in Section 3.1. Of the 600 manually called SNPs, Illuminus misclassified 354 rare SNPs as monomorphic, while GenoSNP, GenCall and optiCall misclassified only 3, 13 and 1, respectively. This high number of misclassified rare variants is a direct consequence of Illuminus' within SNP, across sample, approach to genotype calling.

3.3 Comparison to manually called genotypes across chromosome 21

To assess how well each of the algorithms performed across a random selection of SNPs on the Immunochip, we manually called the 1868 SNPs on chromosome 21 using the same procedure as outlined in Section 3.1. Again, SNPs with a call rate <0.98 and/or HWE P<10−5 were deemed to have failed QC. QC results from the genotype-calling algorithms were then compared to those from the manually called genotypes. Although less pronounced than previous comparisons, which specifically focused on SNPs at which the genotype-calling algorithms disagreed, the same general trends were observed (Table 3). Of the 1810 SNPs passing QC in the manually called data, optiCall passed the most (1785 with a sensitivity of 0.99) and GenoSNP the least (1668 with a sensitivity of 0.92). GenCall and Illuminus lay in between (GenCall passing 1737 SNPs and Illuminus 1761, with sensitivities of 0.96 and 0.97, respectively). GenoSNP and optiCall did not misclassify any of the low-frequency SNPs as monomorphic, while GenCall misclassified just one and Illuminus misclassified 21. As expected, SNPs correctly passing QC and then correctly called polymorphic for each algorithm have highly concordant calls to the manual call set (r2>0.993 for all callers).
Table 3.

Chromosome 21, comparison to manual calls

CallerQC
Monomorphic SNPs (of which rare misses)Mean r2 to manual calls
TPFPTFFFSensitivity/specificity
Illuminus17612533490.97/0.57164 (21)0.993
GenoSNP16682561420.92/0.9785 (0)0.996
GenCall1737751730.96/0.88173 (1)0.997
Optical17851444250.99/0.76172 (0)0.997
Manual181005801.00/1.00188 (0)1.000

Monomorphic SNPs = the number of SNPs a genotype-calling algorithm calls monomorphic from its TPs, with the subset of missed rare variants (when compared to manual calls) shown in brackets. r2 is as in Section 3.1 and is calculated over the true QC pass SNPs which were polymorphic according to both the caller and the manual calls.

Chromosome 21, comparison to manual calls Monomorphic SNPs = the number of SNPs a genotype-calling algorithm calls monomorphic from its TPs, with the subset of missed rare variants (when compared to manual calls) shown in brackets. r2 is as in Section 3.1 and is calculated over the true QC pass SNPs which were polymorphic according to both the caller and the manual calls. By combining the FF rate and the number of misclassified rare variants across each genotype-calling algorithm, the loss percentages over the 1868 SNPs of chromosome 21 are 3.87, 7.85, 4.09 and 1.38% for Illuminus, GenoSNP, GenCall and optiCall, respectively. Extending this result over the entire Immunochip, we estimate that 7440, 15 094, 7865 and 2657 ‘callable’ SNPs will be falsely removed from analysis using Illuminus, GenoSNP, GenCall and optiCall, respectively.

4 DISCUSSION

Complex disease genetic association studies are increasingly focusing on rare and low-frequency variants, either using off-the-shelf genome-wide products such as the Illumina HumanOmni5-Quad or mass-produced targeted custom arrays such as the Metabochip, Immunochip or Exomechip. To improve genotype calling for such arrays, we have developed a new algorithm, optiCall, which uses both within and across sample intensity data when calling genotypes. Considering both sets of information simultaneously means optiCall captures the rare and low-frequency variants some purely SNP-wise genotype-calling algorithms can miss, while remaining robust to genotype intensity clouds lying away from their expected positions. Given that the allelic probes on custom arrays have undergone less stringent QC compared to those that make it onto mass-produced genome-wide SNP arrays, the ability to correctly call such SNPs can greatly increase the number of SNPs passing QC (and thus increase power to detect association). We have shown that, of the existing genotype-calling algorithms, optiCall has the highest sensitivity in terms of SNPs passing basic QC. This is significant because each SNP that is removed from a study due to poor genotype calling is potentially a missed association. Furthermore, with reduced linkage disequilibrium observed at rare and low-frequency SNPs (in comparison to common variants), it is less likely that an association to such a variant will be detected through additional tag SNPs. This increase in sensitivity does also yield a small decrease in specificity but, given that cluster plots of associated variants can be manually checked prior to embarking on replication studies, the consequences of this in terms of false-positive associations are likely minimal. Unlike some existing genotype-calling algorithms, optiCall estimates the positions of the genotype classes using the given intensity data and does not require a training dataset or predefined cluster file. This removes genotype-calling errors that manifest through differences between the training dataset and that under study. As more studies attempt to jointly analyze data from different genotyping laboratories and across many different ethnicities, such errors have the possibility to not only reduce power but also to increase false-positive associations. When using optiCall, we recommend that divergent populations (such as African-Americans and white Europeans) be called separately so population specific within and across sample priors are used. Some existing calling-algorithms allow users to manually re-position the predefined clusters to better match discordant datasets whereas optiCall automates this potentially labor intensive procedure. Importantly, optiCall's use of both within and across sample intensity data ensures it is more robust to small sample sizes than mixture model-based algorithms that only use SNP-wise data. Recently, Li ) published a genotype-calling algorithm for the Illumina platform, M3, that also uses both within and across sample information when making genotype calls. M3 runs a two-step calling process. The first step involves calling across sample, and then selecting a set of possibly poorly called SNPs (based on call rate and minor allele frequency) to call using across SNP information. optiCall differs from M3 in that it makes genotype calls using both within and across sample information simultaneously. M3 is written in Matlab, and we did not possess the necessary software to make a quantitative comparison. A drawback of optiCall's genotype-calling approach is that it is very sensitive to intensity outliers (because these prevent the mixture models from fitting well). If no intensity outlier removal is performed prior to running optiCall, we recommend running optiCall's built in outlier removal. This process calculates the mean intensity difference x(1)−x(2) over SNPs for each sample and those with a mean intensity difference more than 2 SD away from the mean are removed before genotype calling. In summary, we have developed a new genotype-calling algorithm for Illumina arrays that uses both SNP-wise and sample-wise calling to more accurately ascertain genotypes at rare, low-frequency and common variants, even when genotype intensity clouds are shifted from their expected positions.
  10 in total

1.  M(3): an improved SNP calling algorithm for Illumina BeadArray data.

Authors:  Gengxin Li; Joel Gelernter; Henry R Kranzler; Hongyu Zhao
Journal:  Bioinformatics       Date:  2011-12-08       Impact factor: 6.937

2.  Evoker: a visualization tool for genotype intensity data.

Authors:  James A Morris; Joshua C Randall; Julian B Maller; Jeffrey C Barrett
Journal:  Bioinformatics       Date:  2010-05-27       Impact factor: 6.937

3.  A note on exact tests of Hardy-Weinberg equilibrium.

Authors:  Janis E Wigginton; David J Cutler; Goncalo R Abecasis
Journal:  Am J Hum Genet       Date:  2005-03-23       Impact factor: 11.025

4.  Cohort profile: 1958 British birth cohort (National Child Development Study).

Authors:  Chris Power; Jane Elliott
Journal:  Int J Epidemiol       Date:  2005-09-09       Impact factor: 7.196

5.  GenoSNP: a variational Bayes within-sample SNP genotyping algorithm that does not require a reference population.

Authors:  Eleni Giannoulatou; Christopher Yau; Stefano Colella; Jiannis Ragoussis; Christopher C Holmes
Journal:  Bioinformatics       Date:  2008-07-24       Impact factor: 6.937

6.  A map of human genome variation from population-scale sequencing.

Authors:  Gonçalo R Abecasis; David Altshuler; Adam Auton; Lisa D Brooks; Richard M Durbin; Richard A Gibbs; Matt E Hurles; Gil A McVean
Journal:  Nature       Date:  2010-10-28       Impact factor: 49.962

Review 7.  Finding the missing heritability of complex diseases.

Authors:  Teri A Manolio; Francis S Collins; Nancy J Cox; David B Goldstein; Lucia A Hindorff; David J Hunter; Mark I McCarthy; Erin M Ramos; Lon R Cardon; Aravinda Chakravarti; Judy H Cho; Alan E Guttmacher; Augustine Kong; Leonid Kruglyak; Elaine Mardis; Charles N Rotimi; Montgomery Slatkin; David Valle; Alice S Whittemore; Michael Boehnke; Andrew G Clark; Evan E Eichler; Greg Gibson; Jonathan L Haines; Trudy F C Mackay; Steven A McCarroll; Peter M Visscher
Journal:  Nature       Date:  2009-10-08       Impact factor: 49.962

Review 8.  Promise and pitfalls of the Immunochip.

Authors:  Adrian Cortes; Matthew A Brown
Journal:  Arthritis Res Ther       Date:  2011-02-01       Impact factor: 5.156

9.  Dense genotyping identifies and localizes multiple common and rare variant association signals in celiac disease.

Authors:  Gosia Trynka; Karen A Hunt; Nicholas A Bockett; Jihane Romanos; Vanisha Mistry; Agata Szperl; Sjoerd F Bakker; Maria Teresa Bardella; Leena Bhaw-Rosun; Gemma Castillejo; Emilio G de la Concha; Rodrigo Coutinho de Almeida; Kerith-Rae M Dias; Cleo C van Diemen; Patrick C A Dubois; Richard H Duerr; Sarah Edkins; Lude Franke; Karin Fransen; Javier Gutierrez; Graham A R Heap; Barbara Hrdlickova; Sarah Hunt; Leticia Plaza Izurieta; Valentina Izzo; Leo A B Joosten; Cordelia Langford; Maria Cristina Mazzilli; Charles A Mein; Vandana Midah; Mitja Mitrovic; Barbara Mora; Marinita Morelli; Sarah Nutland; Concepción Núñez; Suna Onengut-Gumuscu; Kerra Pearce; Mathieu Platteel; Isabel Polanco; Simon Potter; Carmen Ribes-Koninckx; Isis Ricaño-Ponce; Stephen S Rich; Anna Rybak; José Luis Santiago; Sabyasachi Senapati; Ajit Sood; Hania Szajewska; Riccardo Troncone; Jezabel Varadé; Chris Wallace; Victorien M Wolters; Alexandra Zhernakova; B K Thelma; Bozena Cukrowska; Elena Urcelay; Jose Ramon Bilbao; M Luisa Mearin; Donatella Barisani; Jeffrey C Barrett; Vincent Plagnol; Panos Deloukas; Cisca Wijmenga; David A van Heel
Journal:  Nat Genet       Date:  2011-11-06       Impact factor: 38.330

10.  A genotype calling algorithm for the Illumina BeadArray platform.

Authors:  Yik Y Teo; Michael Inouye; Kerrin S Small; Rhian Gwilliam; Panagiotis Deloukas; Dominic P Kwiatkowski; Taane G Clark
Journal:  Bioinformatics       Date:  2007-09-10       Impact factor: 6.937

  10 in total
  47 in total

1.  Identification of an Association of TNFAIP3 Polymorphisms With Matrix Metalloproteinase Expression in Fibroblasts in an Integrative Study of Systemic Sclerosis-Associated Genetic and Environmental Factors.

Authors:  Peng Wei; Yang Yang; Xinjian Guo; Nainan Hei; Syeling Lai; Shervin Assassi; Mengyuan Liu; Filemon Tan; Xiaodong Zhou
Journal:  Arthritis Rheumatol       Date:  2016-03       Impact factor: 10.995

2.  Urban living in healthy Tanzanians is associated with an inflammatory status driven by dietary and metabolic changes.

Authors:  Godfrey S Temba; Vesla Kullaya; Tal Pecht; Blandina T Mmbaga; Anna C Aschenbrenner; Thomas Ulas; Gibson Kibiki; Furaha Lyamuya; Collins K Boahen; Vinod Kumar; Leo A B Joosten; Joachim L Schultze; Andre J van der Ven; Mihai G Netea; Quirijn de Mast
Journal:  Nat Immunol       Date:  2021-02-11       Impact factor: 25.606

3.  zCall: a rare variant caller for array-based genotyping: genetics and population analysis.

Authors:  Jacqueline I Goldstein; Andrew Crenshaw; Jason Carey; George B Grant; Jared Maguire; Menachem Fromer; Colm O'Dushlaine; Jennifer L Moran; Kimberly Chambert; Christine Stevens; Pamela Sklar; Christina M Hultman; Shaun Purcell; Steven A McCarroll; Patrick F Sullivan; Mark J Daly; Benjamin M Neale
Journal:  Bioinformatics       Date:  2012-07-27       Impact factor: 6.937

4.  Interplay of host genetics and gut microbiota underlying the onset and clinical presentation of inflammatory bowel disease.

Authors:  Floris Imhann; Arnau Vich Vila; Marc Jan Bonder; Jingyuan Fu; Dirk Gevers; Marijn C Visschedijk; Lieke M Spekhorst; Rudi Alberts; Lude Franke; Hendrik M van Dullemen; Rinze W F Ter Steege; Curtis Huttenhower; Gerard Dijkstra; Ramnik J Xavier; Eleonora A M Festen; Cisca Wijmenga; Alexandra Zhernakova; Rinse K Weersma
Journal:  Gut       Date:  2016-10-08       Impact factor: 23.059

5.  Combined role of vitamin D status and CYP24A1 in the transition to systemic lupus erythematosus.

Authors:  Kendra A Young; Melissa E Munroe; Joel M Guthridge; Diane L Kamen; Timothy B Niewold; Gary S Gilkeson; Michael H Weisman; Mariko L Ishimori; Jennifer Kelly; Patrick M Gaffney; Kathy H Sivils; Rufei Lu; Daniel J Wallace; David R Karp; John B Harley; Judith A James; Jill M Norris
Journal:  Ann Rheum Dis       Date:  2016-06-09       Impact factor: 19.103

6.  Genetic risk factors for Clostridium difficile infection in ulcerative colitis.

Authors:  A N Ananthakrishnan; E C Oxford; D D Nguyen; J Sauk; V Yajnik; R J Xavier
Journal:  Aliment Pharmacol Ther       Date:  2013-07-14       Impact factor: 8.171

Review 7.  Benefits and limitations of genome-wide association studies.

Authors:  Vivian Tam; Nikunj Patel; Michelle Turcotte; Yohan Bossé; Guillaume Paré; David Meyre
Journal:  Nat Rev Genet       Date:  2019-08       Impact factor: 53.242

8.  Identification of multiple risk variants for ankylosing spondylitis through high-density genotyping of immune-related loci.

Authors:  Adrian Cortes; Johanna Hadler; Jenny P Pointon; Philip C Robinson; Tugce Karaderi; Paul Leo; Katie Cremin; Karena Pryce; Jessica Harris; Seunghun Lee; Kyung Bin Joo; Seung-Cheol Shim; Michael Weisman; Michael Ward; Xiaodong Zhou; Henri-Jean Garchon; Gilles Chiocchia; Johannes Nossent; Benedicte A Lie; Øystein Førre; Jaakko Tuomilehto; Kari Laiho; Lei Jiang; Yu Liu; Xin Wu; Linda A Bradbury; Dirk Elewaut; Ruben Burgos-Vargas; Simon Stebbings; Louise Appleton; Claire Farrah; Jonathan Lau; Tony J Kenna; Nigil Haroon; Manuel A Ferreira; Jian Yang; Juan Mulero; Jose Luis Fernandez-Sueiro; Miguel A Gonzalez-Gay; Carlos Lopez-Larrea; Panos Deloukas; Peter Donnelly; Paul Bowness; Karl Gafney; Hill Gaston; Dafna D Gladman; Proton Rahman; Walter P Maksymowych; Huji Xu; J Bart A Crusius; Irene E van der Horst-Bruinsma; Chung-Tei Chou; Raphael Valle-Oñate; Consuelo Romero-Sánchez; Inger Myrnes Hansen; Fernando M Pimentel-Santos; Robert D Inman; Vibeke Videm; Javier Martin; Maxime Breban; John D Reveille; David M Evans; Tae-Hwan Kim; Bryan Paul Wordsworth; Matthew A Brown
Journal:  Nat Genet       Date:  2013-06-09       Impact factor: 38.330

9.  Inter-individual variability and genetic influences on cytokine responses to bacteria and fungi.

Authors:  Yang Li; Marije Oosting; Patrick Deelen; Isis Ricaño-Ponce; Sanne Smeekens; Martin Jaeger; Vasiliki Matzaraki; Morris A Swertz; Ramnik J Xavier; Lude Franke; Cisca Wijmenga; Leo A B Joosten; Vinod Kumar; Mihai G Netea
Journal:  Nat Med       Date:  2016-07-04       Impact factor: 53.440

10.  Genetic dissection of acute anterior uveitis reveals similarities and differences in associations observed with ankylosing spondylitis.

Authors:  Philip C Robinson; Theodora A M Claushuis; Adrian Cortes; Tammy M Martin; David M Evans; Paul Leo; Pamela Mukhopadhyay; Linda A Bradbury; Katie Cremin; Jessica Harris; Walter P Maksymowych; Robert D Inman; Proton Rahman; Nigil Haroon; Lianne Gensler; Joseph E Powell; Irene E van der Horst-Bruinsma; Alex W Hewitt; Jamie E Craig; Lyndell L Lim; Denis Wakefield; Peter McCluskey; Valentina Voigt; Peter Fleming; Mariapia Degli-Esposti; Jennifer J Pointon; Michael H Weisman; B Paul Wordsworth; John D Reveille; James T Rosenbaum; Matthew A Brown
Journal:  Arthritis Rheumatol       Date:  2015-01       Impact factor: 10.995

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.