A test of the neutral theory#

Section author: Gavin Huttley

This file contains an example for performing a likelihood ratio test of neutrality. The test compares a model where the codon model parameter omega is constrained to be the same for all edges against one where each edge has its’ own omega. From cogent3 import all the components we need.

from cogent3 import load_aligned_seqs, load_tree
from cogent3.evolve.models import get_model
from scipy.stats.distributions import chi2

Get your alignment and tree.

al = load_aligned_seqs("data/long_testseqs.fasta")
t = load_tree("data/test.tree")

We use a Goldman Yang 1994 model.

sm = get_model("MG94GTR")

Make the controller object

lf = sm.make_likelihood_function(t, digits=2, space=2)

Get the likelihood function object this object performs the actual likelihood calculation.

lf.set_alignment(al)

By default, parameters other than branch lengths are treated as global in scope, so we don’t need to do anything special here. We can influence how rigorous the optimisation will be, and switch between the global and local optimisers provided in the toolkit using arguments to the optimise method. The global_tolerance=1.0 argument specifies conditions for an early break from simulated annealing which will be automatically followed by the Powell local optimiser. .. note:: the ‘results’ are of course nonsense.

lf.optimise(global_tolerance=1.0, show_progress=False)

View the resulting maximum-likelihood parameter values

lf

MG94GTR

log-likelihood = -8636.1801

number of free parameters = 13

Global params
A/CA/GA/TC/GC/Tomega
1.023.360.730.953.710.90
Edge params
edgeparentlength
Humanedge.00.09
HowlerMonedge.00.12
edge.0edge.10.12
Mouseedge.10.84
edge.1root0.06
NineBanderoot0.28
DogFacedroot0.34
Motif params
ACGT
0.370.190.210.23

We’ll get the lnL and number of free parameters for later use.

null_lnL = lf.get_log_likelihood()
null_nfp = lf.get_num_free_params()

Specify each edge has it’s own omega by just modifying the existing lf. This means the new function will start with the above values.

lf.set_param_rule("omega", is_independent=True)

Optimise the likelihood function, this time just using the local optimiser.

lf.optimise(local=True, show_progress=False)

View the resulting maximum-likelihood parameter values.

lf

MG94GTR

log-likelihood = -8632.1355

number of free parameters = 19

Global params
A/CA/GA/TC/GC/T
1.033.380.730.953.72
Edge params
edgeparentlengthomega
Humanedge.00.090.59
HowlerMonedge.00.120.96
edge.0edge.10.111.13
Mouseedge.10.830.92
edge.1root0.060.39
NineBanderoot0.281.28
DogFacedroot0.340.84
Motif params
ACGT
0.370.190.210.23

Get out an annotated tree, it looks just like a tree, but has the maximum-likelihood parameter estimates attached to each tree edge. This object can be used for plotting, or to provide starting estimates to a related model.

at = lf.get_annotated_tree()

The lnL’s from the two models are now used to calculate the likelihood ratio statistic (LR) it’s degrees-of-freedom (df) and the probability (P) of observing the LR.

LR = 2 * (lf.get_log_likelihood() - null_lnL)
df = lf.get_num_free_params() - null_nfp
P = chi2.sf(LR, df)

Print this and look up a chi-sq with number of edges - 1 degrees of freedom.

print(f"Likelihood ratio statistic = {LR}")
print(f"degrees-of-freedom = {df}")
print(f"probability = {P}")
Likelihood ratio statistic = 8.089238557869976
degrees-of-freedom = 6
probability = 0.2316381150909231