Slim: Simulating Evolution with Selection and Linkage

Total Page:16

File Type:pdf, Size:1020Kb

Slim: Simulating Evolution with Selection and Linkage NOTE SLiM: Simulating Evolution with Selection and Linkage Philipp W. Messer1 Department of Biology, Stanford University, Stanford, California 94305 ABSTRACT SLiM is an efficient forward population genetic simulation designed for studying the effects of linkage and selection on a chromosome-wide scale. The program can incorporate complex scenarios of demography and population substructure, various models for selection and dominance of new mutations, arbitrary gene structure, and user-defined recombination maps. ECENT studies suggest that linkage effects such as genetic of demography and population substructure, various models Rdraft and background selection can profoundly alter the for selection and dominance, realistic gene structure, and patterns of genetic variation in many species (Sella et al. user-defined recombination maps. Special emphasis was 2009; Lohmueller et al. 2011; Weissman and Barton 2012; further placed on the ability to model and track individual Messer and Petrov 2013). Understanding the potential im- selective sweeps—both complete and partial. While retain- pact of these linkage effects on population genetic methods ing all capabilities of a forward simulation, SLiM utilizes requires efficient forward simulations that can model the evo- sophisticated algorithms and optimized data structures that lution of whole chromosomes with realistic gene structure. enable simulations in reasonably large populations. All these Forward simulations have a long-standing tradition in features are implemented in an easy-to-use C++ command population genetics and many programs have been developed line program. The source code is freely available under the (Carvajal-Rodriguez 2010; Hoban et al. 2011). For any such GNU General Public License and can be downloaded from program, there is typically a trade-off between efficiency and http://www.stanford.edu/~messer/software. flexibility. Simulations based on combined forward-backward SLiM simulates the evolution of diploid genomes in a approaches, such as MSMS (Ewing and Hermisson 2010), can population of hermaphrodites under an extended Wright– be very fast but remain limited to scenarios with only a single Fisher model with selection (Figure 1A). In each generation, selected locus. Current programs that can model scenarios a new set of offspring is created, descending from the indi- with multiple linked selected polymorphisms, such as FRE- viduals in the previous generation. The probability of becom- GENE (Chadeau-Hyam et al. 2008), GENOMEPOP (Carvajal- ing a parent is proportional to an individual’s fitness, which is Rodriguez 2008), simuPOP (Peng and Kimmel, 2005), forwsim determined by the selection and dominance effects of the (Padhukasahasram et al. 2008), or SFS_CODE (Hernandez mutations present in its diploid genome. Gametes are gener- 2008), either lack the ability to model realistic gene structure ated by recombining parental chromosomes (both crossing or are not efficient enough to allow for simulations on the scale over and gene conversion can be modeled) and adding new of a whole chromosome in reasonably large populations. mutations. Here I present SLiM, a population genetic simulation tar- Mutations can be of different user-defined mutation types, geted at bridging the gap between efficiency and flexibility for specified by their dominance coefficients and distributions of the simulation of linkage and selection on a chromosome- fitness effects (DFE); examples could be synonymous, adaptive, wide scale. The program can incorporate complex scenarios and lethal mutations. The possibility to specify arbitrary dominance effects allows for the simulation of a variety of Copyright © 2013 by the Genetics Society of America evolutionary scenarios, including balancing selection and re- doi: 10.1534/genetics.113.152181 Manuscript received April 11, 2013; accepted for publication May 20, 2013 cessive deleterious mutations. Genomic regions can be of dif- Supporting information is available online at http://www.genetics.org/lookup/suppl/ ferent user-defined genomic element types, specified by the doi:10.1534/genetics.113.152181/-/DC1. particular mutation types that can occur in such elements and 1Address for correspondence: Department of Biology, Stanford University, 371 Serra Mall, Stanford, CA 94305. E-mail: [email protected] their relative proportions; examples could be exons and introns. Genetics, Vol. 194, 1037–1039 August 2013 1037 Figure 1 (A) Illustration of SLiM’s core algorithm for a scenario with two subpopulations. In each generation, a new set of offspring is created from the individuals in the previous generation. Parents are drawn with probabilities proportional to their fitness. Gametes are generated by recombining parental chromosomes and adding new mutations. Migration is modeled by choosing parents from the source subpopulation. (B) Comparison of runtimes and peak resident set size memory requirements between SLiM and SFS_CODE for different evolutionary scenarios. In each column, one of the four parameters L, N, u, and r was varied, while the others were kept constant at their respective base values (L = 5 Mbp, N = 500, u =1029, and r = 1028). Simulations were run for 10N generations. Data points show the observed runtimes and memory requirements averaged over 10 simulation runs. Each mutation has a specified position along the chro- in terms of all mutations and genomes present in the mosome but remains abstract in the sense that the simula- population; (ii) random samples of specific sizes drawn from tion does not specify the particular nucleotide states of a subpopulation at given time points; (iii) lists of all mutations ancestral and derived alleles. Note, however, that the user that have become fixed, together with the times when each has the freedom to associate abstract mutation types with mutation became fixed; and (iv) frequency trajectories of specific classes of events. There are no back mutations in the particular mutations over time. simulations. Fixed mutations are removed from the popula- I ran SLiM under various test scenarios to check whether tion and recorded as substitutions. its output agrees with theoretical predictions. Specifically, I SLiM is capable of modeling complex scenarios of de- analyzed levels of neutral heterozygosity under different mography and population substructure. The simulation can scenarios of demography, population substructure, and self- include arbitrary numbers of subpopulations that can be ing, the fixation probabilities of new mutations of different added at user-defined times, initialized either with new selective effects, and the reduction in neutral diversity individuals or with individuals drawn from another sub- around adaptive substitutions. Simulation results conformed population to model a population split or colonization event. with the respective theoretical predictions in all tests (Supporting Subpopulation sizes, migration rates, and selfing rates can Information, File S1, section 6). be changed over time. SLiM utilizes sophisticated algorithms and optimized To establish genetic diversity, simulations first have to go data structures to achieve its high computational efficiency through a burn-in. Alternatively, simulations can be initialized (File S1, section 7.1). The simulation is based on a hierarchi- with a set of predefined genomes provided by the user or with cal data architecture that minimizes the amount of informa- the output of a previous simulation run. The user can further tion stored redundantly. At many stages of the program, specify predetermined mutations to be introduced at certain large quantities of random numbers have to be drawn from time points. Such mutations can be used, for example, to general probability distributions. To do this efficiently, SLiM investigate individual selective sweeps or to track the frequency uses lookup tables that are precomputed only once per gen- trajectories of particular mutations in the population. Predeter- eration and then allow one to draw random numbers in O mined adaptive mutations can also be limited to partial (1) time. Most algorithms are implemented using fast rou- selective sweeps, where positive selection ceases once the tines provided in the GNU scientific library (Galassi et al. mutation has reached a particular population frequency. 2009). SLiM provides a variety of output options, including (i) To evaluate SLiM’s performance I compared its runtime the complete state of the population at specified time points, and memory requirements with those of SFS_CODE, a popular 1038 P. W. Messer forward simulation of similar scope (Hernandez 2008). For Acknowledgments these tests, a chromosome of length L was simulated with The author thanks Dmitri Petrov for continuous support uniform mutation rate u and recombination rate r in a pop- throughout the project; members of the Petrov lab, espe- ulation of size N over the course of 10N generations, assum- cially Zoe Assaf, David Enard, and Nandita Garud for testing ing an exponential DFE with 2Ns ¼ 2 5(File S1, section the program; and three anonymous reviewers for their 7.3). The base scenario used values L = 5 Mbp, N = 500, valuable comments on program and documentation. Part of u =1029, and r =1028 per site per generation. I then this research was funded by the National Institutes of Health varied these four parameters independently to analyze (grants GM089926 and HG002568 to Dmitri Petrov). how each individually affects the performance of either pro- gram. Simulations were conducted on a standard iMac desk- top with
Recommended publications
  • Determining the Factors Driving Selective Effects of New Nonsynonymous Mutations
    Determining the factors driving selective effects of new nonsynonymous mutations Christian D. Hubera,1, Bernard Y. Kima, Clare D. Marsdena, and Kirk E. Lohmuellera,b,c,1 aDepartment of Ecology and Evolutionary Biology, University of California, Los Angeles, CA 90095; bInterdepartmental Program in Bioinformatics, University of California, Los Angeles, CA 90095; and cDepartment of Human Genetics, David Geffen School of Medicine, University of California, Los Angeles, CA 90095 Edited by Andrew G. Clark, Cornell University, Ithaca, NY, and approved March 16, 2017 (received for review November 26, 2016) The distribution of fitness effects (DFE) of new mutations plays a the protein stability model, the back-mutation model, the mu- fundamental role in evolutionary genetics. However, the extent tational robustness model, and Fisher’s geometrical model to which the DFE differs across species has yet to be systematically (FGM). For example, the mutational robustness model predicts investigated. Furthermore, the biological mechanisms determining that more complex species will have more robust regulatory the DFE in natural populations remain unclear. Here, we show that networks that will better buffer the effects of deleterious muta- theoretical models emphasizing different biological factors at tions, leading to less deleterious selection coefficients (10). Here, determining the DFE, such as protein stability, back-mutations, we leverage these predictions of how the DFE is expected to species complexity, and mutational robustness make distinct pre- differ across species to test which theoretical model best explains dictions about how the DFE will differ between species. Analyzing the evolution of the DFE by comparing the DFE in natural amino acid-changing variants from natural populations in a com- populations of humans, Drosophila, yeast, and mice.
    [Show full text]
  • I Xio- and Made the Rather Curious Assumption That the Mutant Is
    NOTES AND COMMENTS NATURAL SELECTION AND THE EVOLUTION OF DOMINANCE P. M. SHEPPARD Deportment of Genetics, University of Liverpool and E.B. FORD Genetic Laboratories, Department of Zoology, Oxford 1. INTRODUCTION CROSBY(i 963) criticises the hypothesis that dominance (or recessiveness) has evolved and is not an attribute of the allelomorph when it arose for the first time by mutation. None of his criticisms is new and all have been discussed many times. However, because of a number of apparent mis- understandings both in previous discussions and in Crosby's paper, and the fact that he does not refer to some important arguments opposed to his own view, it seems necessary to reiterate some of the previous discussion. Crosby's criticisms fall into two parts. Firstly, he maintains, as did Wright (1929a, b) and Haldane (1930), that the selective advantage of genes modifying dominance, being of the same order of magnitude as the mutation rate, is too small to have any evolutionary effect. Secondly, he criticises, as did Wright (5934), the basic assumption that a new mutation when it first arises produces a phenotype somewhat intermediate between those of the two homozygotes. 2.THE SELECTION COEFFICIENT INVOLVED IN THE EVOLUTION OF DOMINANCE Thereis no doubt that the selective advantage of modifiers of dominance is of the order of magnitude of the mutation rate of the gene being modified. Crosby (p. 38) considered a hypothetical example with a mutation rate of i xio-and made the rather curious assumption that the mutant is dominant in the absence of modifiers of dominance.
    [Show full text]
  • It's About Time: the Temporal Dynamics of Phenotypic Selection in the Wild
    Ecology Letters, (2009) 12: 1261–1276 doi: 10.1111/j.1461-0248.2009.01381.x REVIEW AND SYNTHESIS ItÕs about time: the temporal dynamics of phenotypic selection in the wild Abstract Adam M. Siepielski,1* Joseph Selection is a central process in nature. Although our understanding of the strength and D. DiBattista2 and Stephanie form of selection has increased, a general understanding of the temporal dynamics of M. Carlson3 selection in nature is lacking. Here, we assembled a database of temporal replicates of 1 Department of Biological selection from studies of wild populations to synthesize what we do (and do not) know Sciences, Dartmouth College, about the temporal dynamics of selection. Our database contains 5519 estimates of Hanover, NH 03755, USA selection from 89 studies, including estimates of both direct and indirect selection as well 2Redpath Museum and as linear and nonlinear selection. Morphological traits and studies focused on vertebrates Department of Biology, McGill were well-represented, with other traits and taxonomic groups less well-represented. University, Montre´ al, QC H3A 2K6, Canada Overall, three major features characterize the temporal dynamics of selection. First, the 3University of California, strength of selection often varies considerably from year to year, although random Department of Environmental sampling error of selection coefficients may impose bias in estimates of the magnitude of Science, Policy, and such variation. Second, changes in the direction of selection are frequent. Third, changes Management, 137 Mulford Hall in the form of selection are likely common, but harder to quantify. Although few studies 3114, Berkeley, CA 94720, USA have identified causal mechanisms underlying temporal variation in the strength, *Correspondence: E-mail: direction and form of selection, variation in environmental conditions driven by climatic Adam.M.Siepielski@Dartmouth.
    [Show full text]
  • Fixation of New Mutations in Small Populations
    Whitlock MC & Bürger R (2004). Fixation of New Mutations in Small Populations. In: Evolutionary Conservation Biology, eds. Ferrière R, Dieckmann U & Couvet D, pp. 155–170. Cambridge University Press. c International Institute for Applied Systems Analysis 9 Fixation of New Mutations in Small Populations Michael C. Whitlock and Reinhard Bürger 9.1 Introduction Evolution proceeds as the result of a balance between a few basic processes: mu- tation, selection, migration, genetic drift, and recombination. Mutation is the ulti- mate source of all the genetic variation on which selection may act; it is therefore essential to evolution. Mutations carry a large cost, though; almost all are delete- rious, reducing the fitness of the organisms in which they occur (see Chapter 7). Mutation is therefore both a source of good and ill for a population (Lande 1995). The overall effect of mutation on a population is strongly dependent on the pop- ulation size. A large population has many new mutations in each generation, and therefore the probability is high that it will obtain new favorable mutations. This large population also has effective selection against the bad mutations that occur; deleterious mutations in a large population are kept at a low frequency within a balance between the forces of selection and those of mutation. A population with relatively fewer individuals, however, will have lower fitness on average, not only because fewer beneficial mutations arise, but also because deleterious mutations are more likely to reach high frequencies through random genetic drift. This shift in the balance between fixation of beneficial and deleterious mutations can result in a decline in the fitness of individuals in a small population and, ultimately, may lead to the extinction of that population.
    [Show full text]
  • Selection and Genome Plasticity As the Key Factors in the Evolution of Bacteria
    PHYSICAL REVIEW X 9, 031018 (2019) Selection and Genome Plasticity as the Key Factors in the Evolution of Bacteria † Itamar Sela,* Yuri I. Wolf, and Eugene V. Koonin National Center for Biotechnology Information, National Library of Medicine, National Institutes of Health, Bethesda, Maryland 20894, USA (Received 10 December 2018; revised manuscript received 6 June 2019; published 5 August 2019) In prokaryotes, the number of genes in different functional classes shows apparent universal scaling with the total number of genes that can be approximated by a power law, with a sublinear, near-linear, or superlinear scaling exponent. These dependences are gene class specific but hold across the entire diversity of bacteria and archaea. Several models have been proposed to explain these universal scaling laws, primarily based on the specifics of the respective biological functions. However, a population-genetic theory of universal scaling is lacking. We employ a simple mathematical model for prokaryotic genome evolution, which, together with the analysis of 34 clusters of closely related bacterial genomes, allows us to identify the underlying factors that govern the evolution of the genome content. Evolution of the gene content is dominated by two functional class-specific parameters: selection coefficient and genome plasticity. The selection coefficient quantifies the fitness cost associated with deletion of a gene in a given functional class or the advantage of successful incorporation of an additional gene. Genome plasticity reflects both the availability of the genes of a given class in the external gene pool that is accessible to the evolving population and the ability of microbes to accommodate these genes in the short term, that is, the class-specific horizontal gene transfer barrier.
    [Show full text]
  • Dynamics of Adaptation in Sexual and Asexual Populations Joachim Krug Institut Für Theoretische Physik, Universität Zu Köln
    Dynamics of adaptation in sexual and asexual populations Joachim Krug Institut für Theoretische Physik, Universität zu Köln • Motivation and basic concepts • The speed of evolution in large asexual populations • Epistasis and recombination Joint work with Su-Chan Park and Arjan de Visser [PNAS 104, 18135 (2007); arXiv:0807.3002] I have deeply regretted that I did not proceed far enough at least to understand something of the great leading principles of mathematics, for men thus endowed seem to have an extra sense. The Autobiography of Charles Darwin The modern synthesis R.A. Fisher J.B.S. Haldane S. Wright The evolutionary process is concerned, not with individuals, but with the species, an intricate network of living matter, physically continuous in space- time, and with modes of response to external conditions which it appears can be related to the genetics of individuals only as a statistical consequence of the latter. Sewall Wright (1931) It is not generally realized that genetics has finally solved the age-old problem of the reason for the existence (i.e., the function) of sexuality and sex, and that only geneticists can properly answer the question, “Is sex necessary?” H.J. Muller (1932) The problem of sex Sex is costly: • Two-fold cost of males (Maynard-Smith, 1971) • Cost of finding and courting a mate Nevertheless sexual reproduction is ubiquitous in plants and animals ⇒ What evolutionary forces are responsible for the maintenance of sex? Genetic mechanisms: • Sex helps to eliminate deleterious mutations (Muller’s ratchet) • Sex speeds up the establishment of beneficial mutations (Muller-Fisher effect/clonal interference) The Muller-Fisher hypothesis for the advantage of sex J.F.
    [Show full text]
  • Selection in a Subdivided Population with Local Extinction and Recolonization
    Copyright 2003 by the Genetics Society of America Selection in a Subdivided Population With Local Extinction and Recolonization Joshua L. Cherry1 Department of Organismic and Evolutionary Biology, Harvard University, Cambridge, Massachusetts 02138 Manuscript received December 13, 2002 Accepted for publication March 4, 2003 ABSTRACT In a subdivided population, local extinction and subsequent recolonization affect the fate of alleles. Of particular interest is the interaction of this force with natural selection. The effect of selection can be weakened by this additional source of stochastic change in allele frequency. The behavior of a selected allele in such a population is shown to be equivalent to that of an allele with a different selection coefficient in an unstructured population with a different size. This equivalence allows use of established results for panmictic populations to predict such quantities as fixation probabilities and mean times to fixation. The magnitude of the quantity Nese, which determines fixation probability, is decreased by extinction and recolonization. Thus deleterious alleles are more likely to fix, and advantageous alleles less likely to do so, in the presence of extinction and recolonization. Computer simulations confirm that the theoretical predictions of both fixation probabilities and mean times to fixation are good approximations. HE consequences of population subdivision for evol- tion of an infinite population size. These results provide Tution depend on the nature of gene flow between not only fixation probabilities but also a complete de- subpopulations. Gene flow might be restricted to ordi- scription of the trajectory of the frequency of a selected nary migration, but might also include extinction of allele.
    [Show full text]
  • Lecture on Positive and Negative Selection
    POSITIVE AND NEGATIVE SELECTION (AND RELATED PROBLEMS) CLAUDIA BANK Evolutionary Dynamics @ IGC: ➤ How do populations adapt to challenging environments? E.g., how does drug resistance evolve? ➤ Which processes drive speciation & diversification? ➤ What is the role of interactions in evolution? Mutation Genetic drift Migration Selection What we do ➤ Study evolutionary processes using simple models ➤ Evaluate these models using empirical and simulated data ➤ Use modeling to inform experimental design a priori Evolutionary Dynamics @ IGC: ➤ How do populations adapt to challenging environments? E.g., how does drug resistance evolve? ➤ Which processes drive speciation & diversification? ➤ What is the role of interactions in evolution? Mutation Genetic drift Migration Selection What we do ➤ Study evolutionary processes using simple models ➤ Evaluate these models using empirical and simulated data ➤ Use modeling to inform experimental design a priori It may be said that natural selection is daily and hourly scutinising, throughout the world, every variation, even the slightest; rejecting that which is bad, preserving and adding up all that is good; silently and insensibly working , whenever and “ wherever opportunity offers, at the improvement of each organic being in relation to its organic and inorganic conditions of life. We see nothing of these slow changes in progress, until the hand of time has marked the long lapse of ages. - Darwin, 1859 It may be said that natural selection is daily and hourly scutinising, throughout the world, every variation, even the slightest; rejecting that which is bad, preserving and adding up all that is good; silently and insensibly working , whenever and “ wherever opportunity offers, at the improvement of each organic being in relation to its organic and inorganic conditions of life.
    [Show full text]
  • Determining the Factors Driving Selective Effects of New Nonsynonymous Mutations
    Determining the factors driving selective effects of new nonsynonymous mutations Christian D. Hubera,1, Bernard Y. Kima, Clare D. Marsdena, and Kirk E. Lohmuellera,b,c,1 aDepartment of Ecology and Evolutionary Biology, University of California, Los Angeles, CA 90095; bInterdepartmental Program in Bioinformatics, University of California, Los Angeles, CA 90095; and cDepartment of Human Genetics, David Geffen School of Medicine, University of California, Los Angeles, CA 90095 Edited by Andrew G. Clark, Cornell University, Ithaca, NY, and approved March 16, 2017 (received for review November 26, 2016) The distribution of fitness effects (DFE) of new mutations plays a the protein stability model, the back-mutation model, the mu- fundamental role in evolutionary genetics. However, the extent tational robustness model, and Fisher’s geometrical model to which the DFE differs across species has yet to be systematically (FGM). For example, the mutational robustness model predicts investigated. Furthermore, the biological mechanisms determining that more complex species will have more robust regulatory the DFE in natural populations remain unclear. Here, we show that networks that will better buffer the effects of deleterious muta- theoretical models emphasizing different biological factors at tions, leading to less deleterious selection coefficients (10). Here, determining the DFE, such as protein stability, back-mutations, we leverage these predictions of how the DFE is expected to species complexity, and mutational robustness make distinct pre- differ across species to test which theoretical model best explains dictions about how the DFE will differ between species. Analyzing the evolution of the DFE by comparing the DFE in natural amino acid-changing variants from natural populations in a com- populations of humans, Drosophila, yeast, and mice.
    [Show full text]
  • Application Evolution: Part 1.1 Basics of Coevolution Dynamics
    Application Evolution: Part 1.1 Basics of Coevolution Dynamics S. chilense S. peruvianum Summer Semester 2013 Prof Aurélien Tellier FG Populationsgenetik Color code Color code: Red = Important result or definition Purple: exercise to do Green: some bits of maths Some Definitions Hosts and parasites exert reciprocal selective pressures on each other, which may lead to rapid reciprocal adaptation For organisms with short generation times host–parasite coevolution can be observed in comparatively small time periods => possible to study evolutionary change in real-time: In the field In the laboratory These interactions are examples of “evolution in action” It contradict the common notion that evolution can only be detected across extended time scales. Types of selection Host-parasite coevolution is characterized by reciprocal genetic change and thus changes in allele frequencies within populations. These changes can be determined by two main types of selection: Overdominant selection Negative frequency-dependent selection A general model of natural selection Fitness table for a simple model: one species, one locus, two alleles Genotypes A1A1 A1A2 A2A2 Frequency in offspring p2 2pq q2 Relative fitness 1 1-hs 1-s Frequency after selection p2 / w 2pq (1− hs ) / w q2 (1− s ) / w Wherewp=+22 pq (1 −+ hs ) q 2 (1 − s ) Is the mean fitness of the population Based on Fisher’s fundamental theorem of natural selection With 1 being the fitness of the homozygote A1A1 genotype h is the dominance coefficient (heterozygous effect) s is the selection coefficient Overdominant selection Overdominance occurs if the heterozygote phenotype has a fitness advantage over both homozygotes = " heterozygote advantage " = " heterosis ".
    [Show full text]
  • Hot Spots, Cold Spots, and the Geographic Mosaic Theory of Coevolution
    vol. 156, no. 2 the american naturalist august 2000 Hot Spots, Cold Spots, and the Geographic Mosaic Theory of Coevolution Richard Gomulkiewicz,1,2,* John N. Thompson,1,² Robert D. Holt,3 Scott L. Nuismer,1 and Michael E. Hochberg4,³ 1. School of Biological Sciences, P.O. Box 644236, Washington hot and cold spots, and by the pattern of gene ¯ow among State University, Pullman, Washington 99164; populations. 2. Department of Pure and Applied Mathematics, P.O. Box 643113, Washington State University, Pullman, Washington 99164; Keywords: geographic mosaic, coevolution, hot and cold spots, hard 3. Department of Evolution and Ecology and Natural History and soft selection, mutualism, antagonism. Museum, University of Kansas, Lawrence, Kansas 66045; 4. Institute of Ecology, University of Paris VI, 7 quai St. Bernard, 75252 Paris Cedex 05, France Interspeci®c interactions between pairs of species are often Submitted August 27, 1999; Accepted March 21, 2000 composed of collections of genetically differentiated pop- ulations connected by gene ¯ow. Well-studied examples from natural populations include interactions between wild ¯ax and ¯ax rust (Burdon and Thrall 1999), snails and trematodes within New Zealand lakes (Lively 1999), abstract: Species interactions commonly coevolve as complex geo- graphic mosaics of populations shaped by differences in local selec- wild Drosophila melanogaster populations and their par- tion and gene ¯ow. We use a haploid matching-alleles model for asitoids (Kraaijeveld and Godfray 1999), legumes and rhi- coevolution to evaluate how a pair of species coevolves when ®tness zobia (Parker and Spoerke 1998; Parker 1999), red cross- interactions are reciprocal in some locations (ªhot spotsº) but not bills and lodgepole pines (Benkman 1999), garter snakes in others (ªcold spotsº).
    [Show full text]
  • An Experimental Test on the Probability of Extinction of New Genetic Variants
    ARTICLE Received 1 Nov 2012 | Accepted 8 Aug 2013 | Published 13 Sep 2013 DOI: 10.1038/ncomms3417 OPEN An experimental test on the probability of extinction of new genetic variants Ivo M. Chelo1, Judit Ne´dli1, Isabel Gordo1 & Henrique Teoto´nio1 In 1927, J.B.S. Haldane reasoned that the probability of fixation of new beneficial alleles is twice their fitness effect. This result, later generalized by M. Kimura, has since become the cornerstone of modern population genetics. There is no experimental test of Haldane’s insight that new beneficial alleles are lost with high probability. Here we demonstrate that extinction rates decrease with increasing initial numbers of beneficial alleles, as expected, by performing invasion experiments with inbred lines of the nematode Caenorhabditis elegans. We further show that the extinction rates of deleterious alleles are higher than those of beneficial alleles, also as expected. Interestingly, we also find that for these inbred lines, when at intermediate frequencies, the fate of invaders might not result in their ultimate fixation or loss but on their maintenance. Our study confirms the key results from classical population genetics and highlights that the nature of adaptation can be complex. 1 Instituto Gulbenkian de Cieˆncia, Apartado 14, P-2781-901 Oeiras, Portugal. Correspondence and requests for materials should be addressed to H.T. (email: [email protected]). NATURE COMMUNICATIONS | 4:2417 | DOI: 10.1038/ncomms3417 | www.nature.com/naturecommunications 1 & 2013 Macmillan Publishers Limited. All rights reserved. ARTICLE NATURE COMMUNICATIONS | DOI: 10.1038/ncomms3417 hen a new allele appears by mutation or recombina- in scoring GFP individuals could lead to inadvertent estimation of tion, it will be represented in very low numbers and it low extinction rates (see Methods).
    [Show full text]