natsel_zhang – a branch-site test

This is the hypothesis test presented in Zhang et al. This test evaluates the hypothesis that a set of sites have undergone positive natural selection on a pre-specified set of lineages.

For this model class, there are groups of branches for which all positions are evolving neutrally but some proportion of those neutrally evolving sites change to adaptively evolving on so-called foreground edges. For the current example, we’ll define the Chimpanzee and Human branches as foreground and everything else as background. The following table defines the parameter scopes.

<IPython.core.display.HTML object>

Note

Our implementation is not as parametrically succinct as that of Zhang et al, we have 1 additional bin probability.

from cogent3.app import io, evo

loader = io.load_aligned(format="fasta", moltype="dna")
aln = loader("data/primate_brca1.fasta")

zhang_test = evo.natsel_zhang(
    "GNC",
    tree="data/primate_brca1.tree",
    optimise_motif_probs=False,
    tip1="Human",
    tip2="Chimpanzee",
)

result = zhang_test(aln)
result
Statistics
LRdfpvalue
4.964730.1744
hypothesiskeylnLnfpDLCunique_Q
null'GNC-null'-6708.311924TrueTrue
alt'GNC-alt'-6705.829627TrueTrue
result.alt.lf

GNC-alt

log-likelihood = -6705.8296

number of free parameters = 27

Global params
A>CA>GA>TC>AC>GC>TG>AG>CG>TT>A
0.85533.53390.97431.65842.19346.25788.00961.24170.79411.2665
continuation
T>C
2.9641
Bin params
binbprobs
00.0532
10.2654
2a0.0403
2b0.6411
Edge params
edgeparentlength
Galagoroot0.5420
HowlerMonroot0.1359
Rhesusedge.30.0648
Orangutanedge.20.0235
Gorillaedge.10.0075
Humanedge.00.0182
Chimpanzeeedge.00.0085
edge.0edge.10.0000
edge.1edge.20.0099
edge.2edge.30.0365
edge.3root0.0234
Edge bin params
edgebinomega
Galago01.0000002079809221e-06
Galago11.0
Galago2a1.0000002079809221e-06
Galago2b1.0
HowlerMon01.0000002079809221e-06
HowlerMon11.0
HowlerMon2a1.0000002079809221e-06
HowlerMon2b1.0
Rhesus01.0000002079809221e-06
Rhesus11.0
Rhesus2a1.0000002079809221e-06
Rhesus2b1.0
Orangutan01.0000002079809221e-06
Orangutan11.0
Orangutan2a1.0000002079809221e-06
Orangutan2b1.0
Gorilla01.0000002079809221e-06
Gorilla11.0
Gorilla2a1.0000002079809221e-06
Gorilla2b1.0
Human01.0000002079809221e-06
Human11.0
Human2a19.99999999101752
Human2b19.99999999101752
Chimpanzee01.0000002079809221e-06
Chimpanzee11.0
Chimpanzee2a19.99999999101752
Chimpanzee2b19.99999999101752
edge.001.0000002079809221e-06
edge.011.0
edge.02a1.0000002079809221e-06
edge.02b1.0
edge.101.0000002079809221e-06
edge.111.0
edge.12a1.0000002079809221e-06
edge.12b1.0
edge.201.0000002079809221e-06
edge.211.0
edge.22a1.0000002079809221e-06
edge.22b1.0
edge.301.0000002079809221e-06
edge.311.0
edge.32a1.0000002079809221e-06
edge.32b1.0
Motif params
AAAAACAAGAATACAACCACGACTAGAAGC
0.05560.02350.03440.05560.02280.00460.00080.02890.02310.0286
continuation
AGGAGTATAATCATGATTCAACACCAGCAT
0.01400.03810.01860.00700.01280.01920.01960.00520.02380.0221
continuation
CCACCCCCGCCTCGACGCCGGCGTCTACTC
0.01950.00620.00060.02630.00110.00090.00230.00320.01370.0078
continuation
CTGCTTGAAGACGAGGATGCAGCCGCGGCT
0.01250.01050.07550.01050.03030.03150.01580.00960.00140.0137
continuation
GGAGGCGGGGGTGTAGTCGTGGTTTACTAT
0.01610.00900.00670.01330.01480.00700.00690.02130.00230.0101
continuation
TCATCCTCGTCTTGCTGGTGTTTATTCTTG
0.02210.00820.00150.02510.00180.00400.02010.02120.00780.0108
continuation
TTT
0.0187

Getting the posterior probabilities of site-class membership

bprobs = result.alt.lf.get_bin_probs()
bprobs[:, :20]
012345678910111213141516171819
00.07590.04270.00000.06700.05860.08000.04300.06080.05180.04100.03920.08000.04800.00000.07970.26170.04100.03550.05860.0619
10.25460.27000.29280.25880.26270.25260.26980.26170.26570.27050.27150.25260.26750.29250.25280.15640.27050.27320.26270.2611
2a0.05680.03290.00000.05040.04440.05980.03310.04600.03960.03180.03030.05980.03680.00000.05950.20250.03180.02760.04440.0469
2b0.61280.65440.70720.62380.63430.60770.65410.63160.64290.65670.65900.60770.64780.70750.60810.37950.65670.66370.63430.6301

Getting all the statistics in tabular form

tab = evo.tabulate_stats()
stats = tab(result.alt)
stats
5x tabular_result('global params': Table, 'bin params': Table, 'edge params': Table, 'edge bin params': Table, 'motif params': Table)
stats["edge bin params"][:10]  # truncating the table
edge bin params
edgebinomega
Galago01.0000002079809221e-06
Galago11.0
Galago2a1.0000002079809221e-06
Galago2b1.0
HowlerMon01.0000002079809221e-06
HowlerMon11.0
HowlerMon2a1.0000002079809221e-06
HowlerMon2b1.0
Rhesus01.0000002079809221e-06
Rhesus11.0

10 rows x 3 columns