Difference between revisions of "Phylogenetics: Likelihood Lab"

From EEBedia
Jump to: navigation, search
(What parameters make the fit of the model significantly better?)
(Download the data file algae.nex)
Line 81: Line 81:
 
Download the data file [http://hydrodictyon.eeb.uconn.edu/people/plewis/courses/phylogenetics/data/algae.nex algae.nex] using the following curl command on the cluster:
 
Download the data file [http://hydrodictyon.eeb.uconn.edu/people/plewis/courses/phylogenetics/data/algae.nex algae.nex] using the following curl command on the cluster:
 
  curl <nowiki>http://hydrodictyon.eeb.uconn.edu/people/plewis/courses/phylogenetics/data/algae.nex</nowiki> > algae.nex
 
  curl <nowiki>http://hydrodictyon.eeb.uconn.edu/people/plewis/courses/phylogenetics/data/algae.nex</nowiki> > algae.nex
Our goal for this lab will be to see if we can tease apart which aspects of sequence evolution are most important for getting the tree correct. '''The accepted phylogeny''' (based on much evidence besides these data) '''places all the chlorophyll-b-containing plastids together.''' Thus, there should be a branch in the tree separating all taxa from the two that do not have chlorophyll b, namely the cyanobacterium ''Anacystis'' (which has chlorophyll a and phycobilin accessory pigments) and the chromophyte ''Olithodiscus'' (which has chlorophylls a and c).
+
Our goal for this lab will be to see if we can tease apart which aspects of sequence evolution are most important for getting the tree correct. '''The accepted phylogeny''' (based on much evidence besides these data) '''places all the chlorophyll-b-containing plastids together''' (Lockhart, Steel, Hendy, and Penny, 1994). Thus, there should be a branch in the tree separating all taxa from the two that do not have chlorophyll b, namely the cyanobacterium ''Anacystis'' (which has chlorophyll a and phycobilin accessory pigments) and the chromophyte ''Olithodiscus'' (which has chlorophylls a and c).
  
 
=== Obtain the maximum likelihood tree under the F81 model ===
 
=== Obtain the maximum likelihood tree under the F81 model ===

Revision as of 19:40, 28 January 2018

Adiantum.png EEB 5349: Phylogenetics
The goal of this lab exercise is to show you how to conduct maximum likelihood analyses in PAUP* using several models, and to decide among competing models using likelihood ratio tests

Getting started

Log into your account on the cluster (ssh username@bbcsrv3.biotech.uconn.edu). Type the following:

qlogin

This asks the scheduler to find a node (computer) in the cluster that is currently not busy. This will prevent us from all using the same computer at the same time.

As usual, use the module command to set paths and aliases in your bash session so that typing paup starts the current version of PAUP*:

module load paup/current

Part A: Using PAUP* to check your answers for homework #3

Create a data file

Create a new file in nano and enter the following text:

#nexus

begin paup;
  set storebrlens;
end; 

begin data;
  dimensions ntax=4 nchar=2;
  format datatype=dna;
  matrix
    taxon1 AA
    taxon2 AC
    taxon3 CG
    taxon4 TT
    ;
end;

begin trees;
  utree hw3 = (taxon1:0.3, taxon2:0.3, (taxon3:0.3, taxon4:0.3):0.3);
end;

begin paup;
  lset nst=1 basefreq=equal;
  lscores 1 / userbrlen sitelike;
end;

Understanding the data file

The NEXUS file you just created has four blocks.

First paup block

The first block is a paup block that sets the storebrlens flag. This tells PAUP* to save branch lengths found in any trees. By default, PAUP* immediately throws away any branch lengths that it finds, then estimates them anew according to whatever model is in effect. In this case, we are trying to get PAUP* to compute likelihoods for a tree in which all five branch lengths are set to the specific value 0.3, so it is important to keep PAUP* from discarding the branch lengths.

Data block

The second block is the data block. Data for two sites are provided, the first site being the one you used for homework #3. The second site is necessary because PAUP* will refuse to calculate the likelihood of a tree with data from only one site. We will simply ignore results for the second (dummy) site.

Trees block

The third block is a trees block that defines the tree and branch lengths.

  • 'Can you find where in the tree description the length of the central branch is defined?

The keyword utree can be used in PAUP* (but not necessarily other programs) to explicitly define an unrooted tree. The hw3 part is just an arbitrary name for this tree: you could use any name here.

Final paup block

The fourth (paup) block comprises an lset command that specifies the likelihood settings. The nst option specifies the number of substitution parameters, which is 1 for the JC model, and basefreq=equal specifies that base frequencies are assumed to be equal. Together, nst=1 and basefreq=equal specify the JC model because the only other model with one substitution parameter is the F81 model (which has unequal base frequencies).

The command lscores 1 tells PAUP* to compute likelihood scores for the first tree in memory (which is the one we entered in this file). The keyword userbrlen tells PAUP* to use the branch lengths in the tree description (i.e. don't estimate branch lengths), and the sitelike keyword tells PAUP* to output the individual site likelihoods (the default behavior is to just output the overall likelihood).

Ok, go ahead and execute the file in PAUP*.

If you haven't yet started on this homework assignment, that's Ok. You will now know the overall site likelihood, but note that you will still have to do the calculation in order to get the component of the likelihood associated with each of the 16 combinations of ancestral states (I don't think there is any way to get PAUP* to give you these numbers).

Part B:

Return PAUP* to its factory default settings

In part A, we told PAUP* to use user-defined branch lengths and output site likelihoods whenever the lscores command was issued. PAUP* remembers these settings, and sometimes this causes unexpected results. You can cause PAUP* to forget these changes to default settings in one of two ways:

  • restart PAUP*
  • use the factory command

Issue the factory command now to cause PAUP* to revert to its factory default settings without having to quit and restart the program.

Download the data file algae.nex

Download the data file algae.nex using the following curl command on the cluster:

curl http://hydrodictyon.eeb.uconn.edu/people/plewis/courses/phylogenetics/data/algae.nex > algae.nex

Our goal for this lab will be to see if we can tease apart which aspects of sequence evolution are most important for getting the tree correct. The accepted phylogeny (based on much evidence besides these data) places all the chlorophyll-b-containing plastids together (Lockhart, Steel, Hendy, and Penny, 1994). Thus, there should be a branch in the tree separating all taxa from the two that do not have chlorophyll b, namely the cyanobacterium Anacystis (which has chlorophyll a and phycobilin accessory pigments) and the chromophyte Olithodiscus (which has chlorophylls a and c).

Obtain the maximum likelihood tree under the F81 model

The first goal is to learn how to obtain maximum likelihood estimates of the parameters in several different substitution models. Use PAUP* to answer the following questions. Start by obtaining the maximum likelihood tree under the F81 model. Create a run.nex file and save in it the following:

#nexus

begin paup;
  execute algae.nex;
  set criterion=likelihood;
  lset nst=1 basefreq=empirical;
  hsearch;
end;

The nst=1 tells PAUP* that we want a model having just one substitution rate parameter (the JC69 and F81 models both fall in this category). The basefreq=empirical tells PAUP* that we want to use simple estimates of the base frequencies. The empirical frequency of the base G, for example, is the value you would get if you simply counted up all the Gs in your entire data matrix and divided by the total number of nucleotides. The empirical frequencies are not usually the same as the maximum likelihood estimates (MLEs) of the base frequencies, but they are quick to calculate and often very close to the corresponding MLEs.

Execute run.nex in PAUP* and issue the following command to show the tree:

 showtrees;

One problem is that the tree is drawn in such a way that it appears to be rooted within the flowering plants (tobacco and rice). Specifying the cyanobacterium Anacystis as the outgroup makes more sense:

outgroup Anacystis_nidulans;
[could also use "outgroup 7" because Anacystis is the 7th (of 8) taxa in the data matrix]
showtrees;

The edge lengths are not proportional to the expected number of substitutions when using the showtrees command. To fix this, use the describetrees command rather than the simpler showtrees command:

descr 1 / plot=phylogram;

As with all PAUP* commands, it is usually not necessary to type the entire command name, only enough letters that PAUP* can determine unambiguously which command you want. Here, you typed descr instead of describetrees, and it worked just fine.

You will be working with this tree for quite awhile. Resist the temptation to do heuristic searches with each model, as it will be important to compare the performance of all of the models on the same tree topology! To be safe, save this tree to a file named f81.tre using the savetrees command:

savetrees file=f81.tre brlens;

If you ever need to read this tree back in, use the gettrees command:

gettrees file=f81.tre;

Now get PAUP* to show you the maximum likelihood estimates for the parameters of the F81 model used in this analysis (the 1 here refers to tree 1 in memory):

lscores 1;
  • What are the empirical base frequencies for this data set? answer
  • What is the lnL of this tree under this "empirical base frequencies" version of the F81 model? answer
  • What proportion of sites are constant? (The cstatus command will give you this information) answer

Estimate base frequencies

Now estimate the base frequencies on this tree with maximum likelihood as follows. Note how the lscores command is used to force PAUP* to recompute the likelihood (under the revised model) and spit out the parameter estimates.

lset basefreq=estimate;
lscores 1;
  • What are the maximum likelihood estimates (MLEs) of the base frequencies? answer
  • What is the lnL of this tree under the "estimated base frequencies" version of the F81 model? answer
  • How many parameters are being estimated using the F81 model? answer
  • Is it better than the lnL under the "empirical base frequencies" version of the F81 model? answer

Estimate transition/transversion bias

Switch to the HKY85 model now and estimate the transition/transversion ratio along with the base frequencies. The way you specify the HKY model in PAUP* is to tell it you want a model with 2 substitution rate parameters (nst=2), and that you want to estimate the base frequencies (basefreq=estimate) and the transition/transversion ratio (tratio=estimated). Note that these specifications also apply to the F84 model, so if you want PAUP* to use the F84 model, you would need to add variant=f84 to the lset command.

lset nst=2 basefreq=estimate tratio=estimate;
lscores 1;
  • What is the MLE of the transition/transversion ratio under the HKY85 model? answer
  • What is the MLE of the transition/transversion rate ratio under the HKY85 model? answer
  • What is the lnL of this tree under the HKY85 model? answer
  • How many parameters are being estimated using the HKY85 model? answer
  • Does the HKY model fit the data better than the F81 model? answer

Estimate the proportion of invariable sites

Now ask PAUP* to estimate pinvar, the proportion of invariable sites, using the command lset pinvar=estimate. The HKY85 model with among-site rate heterogeneity modeled using the two-category invariable sites approach is called the HKY85+I model.

  • What is the MLE of pinvar under the HKY85+I model? answer
  • Is the MLE of pinvar larger or smaller than the proportion of constant sites? answer
  • Why are these two proportions different? That is, how can a site be constant but not invariable?
  • What is the lnL of this tree under the HKY85+I model? answer
  • How many parameters are being estimated using the HKY85+I model? answer

Estimate the heterogeneity in rates among sites

Now set pinvar=0 and tell PAUP* to use the discrete gamma distribution with 5 rate categories. Here are the commands for doing this all in one step:

lset pinvar=0 rates=gamma ncat=5 shape=estimate;
lscores 1;

The HKY85 model with among-site rate heterogeneity modeled using the discrete gamma approach is called the HKY85+G model.

  • What is the MLE of the gamma shape parameter under the HKY85+G model? answer
  • What is the lnL of this tree under the HKY85+G model? answer
  • How many parameters are being estimated using the HKY85+G model? answer

Estimate both pinvar and the gamma shape parameter

Now issue the command lset pinvar=estimate to create the HKY85+I+G model and ask PAUP* to estimate both pinvar and the gamma shape parameter simultaneously.

  • What is the MLE of the gamma shape parameter under the HKY85+I+G model? answer
  • What is the MLE of the pinvar parameter under the HKY85+I+G model? answer
  • Is the MLE of the shape parameter higher or lower under the HKY85+I+G model compared to the HKY85+G model? answer Explain why this is so.
  • What is the lnL of this tree under the HKY85+I+G model? answer
  • How many parameters are being estimated using the HKY85+I+G model? answer

Likelihood ratio tests

In this section, you will perform some simple likelihood ratio tests to decide which of the models used in the previous section does the best job of explaining the data while keeping the number of parameters used to a minimum.

Determining significance

A model having k parameters can always attain a higher likelihood than any model having fewer than k parameters that is nested within it (you should be able to explain why this is true), so the question we will be asking is whether more complex (i.e. more parameter-rich) models fit significantly better than simpler nested models. To do this we will assume that the likelihood ratio test statistic LR (equal to twice the difference in log-likelihoods) has the same distribution as a chi-squared random variable with degrees of freedom (d.f.) equal to the difference in the number of estimated parameters in the two models. (A parameter whose value is fixed doesn't count as a parameter.)

To be specific, we would like to know whether LR falls inside the 5% right tail of the chi-squared distribution. If it does, then it should be considered an unusually large value of LR; i.e. not a LR value that would normally arise (95% of the time) if the models were equivalent explanations of the data. We can use R to do the calculation for us. As with PAUP*, the default version of R is old, so load a recent version (module avail will show you all the possibilities if you are curious):

module load R/3.3.1

Suppose LR = 6.91 and d.f. = 1 (one parameter differs between the models). To ask R to tell us what fraction of the 1 d.f. chi-square distribution is to the left of 6.91, use the pchisq (chi-squared cumulative probability) command:

pchisq(6.91, df=1)

You should get this response

[1] 0.9914285

which tells us that 99.14285% of the distribution is to the left of 6.91 and thus less than 1% is to the right, which means 6.91 is significantly large (because the probability of seeing a value that large or larger is less than 5%).

To find the critical value, you can use the qchisq (chi-squared quantile) command:

qchisq(0.95, df=1)

This tells us the specific value that we have to exceed in order to be significant. In this case (when d.f.=1), it is 3.841459.

What parameters make the fit of the model significantly better?

The model with which we will begin is the F81 model with estimated base freqencies. Compare this F81 model to the HKY85 model, which differs from the F81 model only in the fact that it allows transitions and transversions to occur at different rates.

To calculate the likelihood ratio test statistic LR, subtract the log-likelihood of the less complex model from that of the more complex model and multiply by 2. This will give you a positive number. If you ever get a negative LR statistic, it means you have the models in the wrong order.

You should have all the numbers you need to perform these likelihood ratio tests. If, however, you have not written some of them down, and thus need to redo some of these analyses, you might need to know how to "turn off" rate heterogeneity using the following command:

lset rates=equal pinvar=0;
  • What is the likelihood ratio test statistic for F81 vs. HKY85? answer
  • How many degrees of freedom for this test? answer
  • What is the significance (P-value) for this test? answer
  • Does allowing for a transition/transversion bias make a significant difference? answer

Consider the remaining models for which we have collected log likelihoods: HKY85+I, HKY85+G and HKY85+I+G.

  • Does the HKY85+I model explain the data signficantly better than an equal rates HKY85 model? answer
  • Does the HKY85+G model explain the data signficantly better than an equal rates HKY85 model? answer
  • Does the HKY85+I+G model explain the data signficantly better than either HKY85+I or HKY85+G alone? answer

Using the simplest model that you can defend (of the five we have examined: F81, HKY85, HKY85+I, HKY85+G, HKY85+I+G), perform an heuristic search under the maximum likelihood criterion. To make the analysis go faster, we will ask PAUP* to not re-estimate all the model parameters for every tree it examines during the search. To do this, first use the lset command to set up the model you are planning to use. Use the lscores command to force PAUP* to re-estimate all of the parameters of your selected model on some tree (the tree just needs to be something reasonable, such as a NJ tree or the F81 tree you have been using). Now, for every parameter that you estimated, change the word estimate to previous in the lset command, and after executing this new lset command, start a search using just hsearch. PAUP* will fix the parameters at the previous values (i.e. the estimates you just forced it to calculate) and use these same values for every tree examined during the search.

  • Does the model you have selected place all the chlorophyll-b organisms together?

This lab is already a bit long, so we will not take time to do it now, but I hope you realize that you could figure out exactly what parameter(s) are needed in the model to get this tree right. JC69 doesn't do it, nor does F81 (as you may have noticed), but it actually doesn't take much beyond JC69 to do the trick.

A challenge

I have simulated a data set under one of the following models: JC69, F81, K80, or HKY85. The data file can be downloaded using the following link: simdata.nex.

All of the sites either evolved at the same rate, or rate heterogeneity was added in the form of gamma distributed relative rates with or without some invariable sites. Can you identify which of the four basic models was used, and in addition tell me how much rate heterogeneity was added?

Hint: start by getting a NJ tree (use paup's nj command for this) and estimating all parameters of the most complex model (HKY85+I+G) on that tree. You should be able to tell by examining the parameter estimates which model was used. If it is not clear, you can perform some likelihood ratio tests to see how much significance should be attached to the value of the parameters in question.